[svn-commits] tilghman: branch 1.6.1 r149638 - in /branches/1.6.1: ./ codecs/lpc10/lpcini.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Oct 15 11:42:36 CDT 2008


Author: tilghman
Date: Wed Oct 15 11:42:35 2008
New Revision: 149638

URL: http://svn.digium.com/view/asterisk?view=rev&rev=149638
Log:
Merged revisions 149637 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r149637 | tilghman | 2008-10-15 11:41:54 -0500 (Wed, 15 Oct 2008) | 8 lines
  
  When using MALLOC_DEBUG, codec_lpc10 leaks memory, because it matches a library
  malloc() with an ast_free (which, of course, doesn't match up with known
  allocated memory, so the free fails).
  (closes issue #13702)
   Reported by: eliel
   Patches: 
         codec_lpc10_lpcini.c uploaded by eliel (license 64)
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/codecs/lpc10/lpcini.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/codecs/lpc10/lpcini.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/codecs/lpc10/lpcini.c?view=diff&rev=149638&r1=149637&r2=149638
==============================================================================
--- branches/1.6.1/codecs/lpc10/lpcini.c (original)
+++ branches/1.6.1/codecs/lpc10/lpcini.c Wed Oct 15 11:42:35 2008
@@ -34,7 +34,7 @@
 	-lf2c -lm   (in that order)
 */
 
-#include <stdlib.h>
+#include "asterisk.h"
 #include "f2c.h"
 
 #ifdef P_R_O_T_O_T_Y_P_E_S




More information about the svn-commits mailing list