[asterisk-commits] rmudgett: trunk r372627 - in /trunk: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Sep 7 16:51:35 CDT 2012
Author: rmudgett
Date: Fri Sep 7 16:51:31 2012
New Revision: 372627
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372627
Log:
Fix exception path typo in app_queue.c try_calling().
(closes issue ASTERISK-20380)
Reported by: Jeremy Pepper
Patches:
fix-local-channel-locking.patch (license #6350) patch uploaded by Jeremy Pepper
........
Merged revisions 372624 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 372625 from http://svn.asterisk.org/svn/asterisk/branches/10
........
Merged revisions 372626 from http://svn.asterisk.org/svn/asterisk/branches/11
Modified:
trunk/ (props changed)
trunk/apps/app_queue.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.
Modified: trunk/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_queue.c?view=diff&rev=372627&r1=372626&r2=372627
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Fri Sep 7 16:51:31 2012
@@ -5054,7 +5054,7 @@
callattempt_free(tmp);
ao2_ref(cur, -1);
ao2_iterator_destroy(&memi);
- ao2_unlock(&qe->parent);
+ ao2_unlock(qe->parent);
goto out;
}
datastore->data = dialed_interfaces;
More information about the asterisk-commits
mailing list