[asterisk-commits] qwell: trunk r70561 - in /trunk: ./ cdr/cdr_pgsql.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jun 20 17:55:48 CDT 2007
Author: qwell
Date: Wed Jun 20 17:55:47 2007
New Revision: 70561
URL: http://svn.digium.com/view/asterisk?view=rev&rev=70561
Log:
Merged revisions 70560 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r70560 | qwell | 2007-06-20 17:55:21 -0500 (Wed, 20 Jun 2007) | 1 line
Fix a stupid mistake in my last cdr_pgsql race condition fix
........
Modified:
trunk/ (props changed)
trunk/cdr/cdr_pgsql.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/cdr/cdr_pgsql.c
URL: http://svn.digium.com/view/asterisk/trunk/cdr/cdr_pgsql.c?view=diff&rev=70561&r1=70560&r2=70561
==============================================================================
--- trunk/cdr/cdr_pgsql.c (original)
+++ trunk/cdr/cdr_pgsql.c Wed Jun 20 17:55:47 2007
@@ -313,7 +313,7 @@
ast_mutex_lock(&pgsql_lock);
my_unload_module();
res = my_load_module();
- ast_mutex_lock(&pgsql_lock);
+ ast_mutex_unlock(&pgsql_lock);
return res;
}
More information about the asterisk-commits
mailing list