[asterisk-commits] rmudgett: branch 11 r372626 - in /branches/11: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Sep 7 16:50:34 CDT 2012
Author: rmudgett
Date: Fri Sep 7 16:50:30 2012
New Revision: 372626
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372626
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
Modified:
branches/11/ (props changed)
branches/11/apps/app_queue.c
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: branches/11/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/apps/app_queue.c?view=diff&rev=372626&r1=372625&r2=372626
==============================================================================
--- branches/11/apps/app_queue.c (original)
+++ branches/11/apps/app_queue.c Fri Sep 7 16:50:30 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