[svn-commits] rmudgett: branch group/v14_colp r150123 - /team/group/v14_colp/channels/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Oct 16 10:55:24 CDT 2008


Author: rmudgett
Date: Thu Oct 16 10:55:24 2008
New Revision: 150123

URL: http://svn.digium.com/view/asterisk?view=rev&rev=150123
Log:
Fix memory leak found by customer

Modified:
    team/group/v14_colp/channels/chan_misdn.c

Modified: team/group/v14_colp/channels/chan_misdn.c
URL: http://svn.digium.com/view/asterisk/team/group/v14_colp/channels/chan_misdn.c?view=diff&rev=150123&r1=150122&r2=150123
==============================================================================
--- team/group/v14_colp/channels/chan_misdn.c (original)
+++ team/group/v14_colp/channels/chan_misdn.c Thu Oct 16 10:55:24 2008
@@ -6331,6 +6331,7 @@
 {
 	ast_mutex_destroy(&jb->mutexjb);
 	
+	ast_free(jb->ok);
 	ast_free(jb->samples);
 	ast_free(jb);
 }




More information about the svn-commits mailing list