[asterisk-addons-commits] russell: trunk r715 - in /trunk: ./	channels/ooh323c/src/ooCmdChannel.c
    SVN commits to the Asterisk addons project 
    asterisk-addons-commits at lists.digium.com
       
    Mon Dec 22 11:00:08 CST 2008
    
    
  
Author: russell
Date: Mon Dec 22 11:00:07 2008
New Revision: 715
URL: http://svn.digium.com/view/asterisk-addons?view=rev&rev=715
Log:
Merged revisions 714 via svnmerge from 
https://origsvn.digium.com/svn/asterisk-addons/branches/1.4
........
r714 | russell | 2008-12-22 10:59:46 -0600 (Mon, 22 Dec 2008) | 7 lines
Fix a bogus pthread_mutex_init()
(closes issue #14116)
Reported by: junky
Patches:
      mutex_init.diff uploaded by junky (license 177)
........
Modified:
    trunk/   (props changed)
    trunk/channels/ooh323c/src/ooCmdChannel.c
Propchange: trunk/
------------------------------------------------------------------------------
--- branch-1.4-merged (original)
+++ branch-1.4-merged Mon Dec 22 11:00:07 2008
@@ -1,1 +1,1 @@
-/branches/1.4:1-299,308,310,317,319,329,342,348,358,380,382,387,389,398,405,410,414,417,423,428,466,472,475,479,485,490,502,539,574,578,606
+/branches/1.4:1-299,308,310,317,319,329,342,348,358,380,382,387,389,398,405,410,414,417,423,428,466,472,475,479,485,490,502,539,574,578,606,714
Modified: trunk/channels/ooh323c/src/ooCmdChannel.c
URL: http://svn.digium.com/view/asterisk-addons/trunk/channels/ooh323c/src/ooCmdChannel.c?view=diff&rev=715&r1=714&r2=715
==============================================================================
--- trunk/channels/ooh323c/src/ooCmdChannel.c (original)
+++ trunk/channels/ooh323c/src/ooCmdChannel.c Mon Dec 22 11:00:07 2008
@@ -37,7 +37,7 @@
    if ((ret = pipe(thePipe)) == -1) {
       return OO_FAILED;
    }
-   pthread_mutex_init(&gCmdChanLock);
+   pthread_mutex_init(&gCmdChanLock, NULL);
 
    gH323ep.cmdSock = dup(thePipe[0]);
    close(thePipe[0]);
    
    
More information about the asterisk-addons-commits
mailing list