[asterisk-commits] rmudgett: trunk r355321 - in /trunk: ./ cel/cel_sqlite3_custom.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Feb 14 12:16:29 CST 2012
Author: rmudgett
Date: Tue Feb 14 12:16:26 2012
New Revision: 355321
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=355321
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
........
Merged revisions 355320 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/cel/cel_sqlite3_custom.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/cel/cel_sqlite3_custom.c
URL: http://svnview.digium.com/svn/asterisk/trunk/cel/cel_sqlite3_custom.c?view=diff&rev=355321&r1=355320&r2=355321
==============================================================================
--- trunk/cel/cel_sqlite3_custom.c (original)
+++ trunk/cel/cel_sqlite3_custom.c Tue Feb 14 12:16:26 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 asterisk-commits
mailing list