Fix memory leak found by customer

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@150124 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Richard Mudgett 18 years ago
parent 1985be224e
commit 4fa4c33f6d

@ -5375,6 +5375,7 @@ void misdn_jb_destroy(struct misdn_jb *jb)
{
ast_mutex_destroy(&jb->mutexjb);
free(jb->ok);
free(jb->samples);
free(jb);
}

Loading…
Cancel
Save