[svn-commits] wdoekes: trunk r414679 - in /trunk: ./ channels/chan_unistim.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed May 28 04:43:57 CDT 2014


Author: wdoekes
Date: Wed May 28 04:43:53 2014
New Revision: 414679

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=414679
Log:
chan_unistim: Unlock mutex in rare OOM condition.

#ASTERISK-23792 #close
Reported by: Peter Whisker

Review: https://reviewboard.asterisk.org/r/3567/
........

Merged revisions 414677 from http://svn.asterisk.org/svn/asterisk/branches/11
........

Merged revisions 414678 from http://svn.asterisk.org/svn/asterisk/branches/12

Modified:
    trunk/   (props changed)
    trunk/channels/chan_unistim.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.

Modified: trunk/channels/chan_unistim.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_unistim.c?view=diff&rev=414679&r1=414678&r2=414679
==============================================================================
--- trunk/channels/chan_unistim.c (original)
+++ trunk/channels/chan_unistim.c Wed May 28 04:43:53 2014
@@ -6384,10 +6384,10 @@
 		}
 		d = d->next;
 	}
+	ast_mutex_unlock(&devicelock);
 	if (!(lt = ast_calloc(1, sizeof(*lt)))) {
 		return NULL;
 	}
-	ast_mutex_unlock(&devicelock);
 	if (create) {
 		if (!(d = ast_calloc(1, sizeof(*d)))) {
 			return NULL;




More information about the svn-commits mailing list