From: Russell Bryant Date: Tue, 11 Sep 2007 14:25:20 +0000 (+0000) Subject: Merged revisions 82238 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~1470 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=74044bbb8874a456cbd7f1a68c3ddde4eba748fc;p=thirdparty%2Fasterisk.git Merged revisions 82238 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r82238 | russell | 2007-09-11 09:21:17 -0500 (Tue, 11 Sep 2007) | 2 lines Add a missing unref of a queue member in an error handling block ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82239 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 33fc539d75..46157742d3 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -2623,6 +2623,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce struct callattempt *tmp = ast_calloc(1, sizeof(*tmp)); if (!tmp) { + ao2_ref(cur, -1); ast_mutex_unlock(&qe->parent->lock); if (use_weight) AST_LIST_UNLOCK(&queues);