Merged revisions 150124 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r150124 | rmudgett | 2008-10-16 10:56:06 -0500 (Thu, 16 Oct 2008) | 1 line
  
  Fix memory leak found by customer
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@150125 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett 2008-10-16 16:04:45 +00:00
parent 15264cfcd0
commit de9c5d4c42
1 changed files with 1 additions and 0 deletions

View File

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