[asterisk-commits] may: branch 10 r339245 - in /branches/10: ./ addons/ooh323c/src/memheap.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Oct 4 06:50:00 CDT 2011


Author: may
Date: Tue Oct  4 06:49:49 2011
New Revision: 339245

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=339245
Log:
Merged revisions 339244 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r339244 | may | 2011-10-04 15:44:55 +0400 (Tue, 04 Oct 2011) | 2 lines
  
  fix forget declaration in previous change
........

Modified:
    branches/10/   (props changed)
    branches/10/addons/ooh323c/src/memheap.c

Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: branches/10/addons/ooh323c/src/memheap.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/addons/ooh323c/src/memheap.c?view=diff&rev=339245&r1=339244&r2=339245
==============================================================================
--- branches/10/addons/ooh323c/src/memheap.c (original)
+++ branches/10/addons/ooh323c/src/memheap.c Tue Oct  4 06:49:49 2011
@@ -1062,6 +1062,7 @@
 void memHeapRelease (void** ppvMemHeap)
 {
    OSMemHeap** ppMemHeap = (OSMemHeap**)ppvMemHeap;
+   OSMemHeap* pMemHeap = *ppMemHeap;
 
    if (ppMemHeap != 0 && *ppMemHeap != 0 && --(*ppMemHeap)->refCnt == 0) {
       OSMemLink* pMemLink, *pMemLink2;




More information about the asterisk-commits mailing list