From: Richard Mudgett Date: Fri, 7 Sep 2012 21:49:16 +0000 (+0000) Subject: Fix exception path typo in app_queue.c try_calling(). X-Git-Tag: 10.9.0-rc1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c5f4fe36512333d2d5e0a081b2ab45e6d459fba;p=thirdparty%2Fasterisk.git 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 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@372625 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 4d03f4f056..4165ef56cf 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -4629,7 +4629,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce 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;