[asterisk-commits] dlee: branch dlee/ASTERISK-194630-startup-deadlock r398440 - /team/dlee/ASTER...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Sep 5 13:22:30 CDT 2013


Author: dlee
Date: Thu Sep  5 13:22:28 2013
New Revision: 398440

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=398440
Log:
Matching ast_std_free call

Modified:
    team/dlee/ASTERISK-194630-startup-deadlock/main/lock.c

Modified: team/dlee/ASTERISK-194630-startup-deadlock/main/lock.c
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ASTERISK-194630-startup-deadlock/main/lock.c?view=diff&rev=398440&r1=398439&r2=398440
==============================================================================
--- team/dlee/ASTERISK-194630-startup-deadlock/main/lock.c (original)
+++ team/dlee/ASTERISK-194630-startup-deadlock/main/lock.c Thu Sep  5 13:22:28 2013
@@ -114,7 +114,7 @@
 	if (*plt) {
 		lt = *plt;
 		pthread_mutex_destroy(&lt->reentr_mutex);
-		free(lt);
+		ast_std_free(lt);
 		*plt = NULL;
 	}
 }




More information about the asterisk-commits mailing list