[svn-commits] rmudgett: branch 10 r355320 - in /branches/10: ./ cel/cel_sqlite3_custom.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Feb 14 12:14:22 CST 2012


Author: rmudgett
Date: Tue Feb 14 12:14:18 2012
New Revision: 355320

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=355320
Log:
Fix lock typo that should be unlock in cel_sqlite_custom reload.

(closes issue ASTERISK-19356)
Reported by: Alex Villacis Lasso
Patches:
      asterisk-1.8.9.2-cel_sqlite3_custom-fix-reload-locking-typo.patch (license #5617) patch uploaded by Alex Villacis Lasso

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

Merged revisions 355319 from http://svn.asterisk.org/svn/asterisk/branches/1.8

Modified:
    branches/10/   (props changed)
    branches/10/cel/cel_sqlite3_custom.c

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

Modified: branches/10/cel/cel_sqlite3_custom.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/cel/cel_sqlite3_custom.c?view=diff&rev=355320&r1=355319&r2=355320
==============================================================================
--- branches/10/cel/cel_sqlite3_custom.c (original)
+++ branches/10/cel/cel_sqlite3_custom.c Tue Feb 14 12:14:18 2012
@@ -353,7 +353,7 @@
 
 	ast_mutex_lock(&lock);
 	res = load_config(1);
-	ast_mutex_lock(&lock);
+	ast_mutex_unlock(&lock);
 
 	return res;
 }




More information about the svn-commits mailing list