[asterisk-commits] rmudgett: branch 1.4 r150124 - /branches/1.4/channels/chan_misdn.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Oct 16 10:56:06 CDT 2008
Author: rmudgett
Date: Thu Oct 16 10:56:06 2008
New Revision: 150124
URL: http://svn.digium.com/view/asterisk?view=rev&rev=150124
Log:
Fix memory leak found by customer
Modified:
branches/1.4/channels/chan_misdn.c
Modified: branches/1.4/channels/chan_misdn.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_misdn.c?view=diff&rev=150124&r1=150123&r2=150124
==============================================================================
--- branches/1.4/channels/chan_misdn.c (original)
+++ branches/1.4/channels/chan_misdn.c Thu Oct 16 10:56:06 2008
@@ -5375,6 +5375,7 @@
{
ast_mutex_destroy(&jb->mutexjb);
+ free(jb->ok);
free(jb->samples);
free(jb);
}
More information about the asterisk-commits
mailing list