[asterisk-commits] rmudgett: branch 1.8 r372624 -	/branches/1.8/apps/app_queue.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Fri Sep  7 16:48:05 CDT 2012
    
    
  
Author: rmudgett
Date: Fri Sep  7 16:48:02 2012
New Revision: 372624
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372624
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
Modified:
    branches/1.8/apps/app_queue.c
Modified: branches/1.8/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_queue.c?view=diff&rev=372624&r1=372623&r2=372624
==============================================================================
--- branches/1.8/apps/app_queue.c (original)
+++ branches/1.8/apps/app_queue.c Fri Sep  7 16:48:02 2012
@@ -4543,7 +4543,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