From: Mark Michelson Date: Tue, 14 Apr 2009 23:28:13 +0000 (+0000) Subject: Fix a couple of queue member reference leaks. X-Git-Tag: 11.0.0-beta1~5050 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f26878feb29981ff69185d8b8c7e06b645e8b108;p=thirdparty%2Fasterisk.git Fix a couple of queue member reference leaks. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@188470 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index c62b4985ae..c88bfd61db 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -4611,7 +4611,7 @@ static int set_member_penalty(char *queuename, char *interface, int penalty) "Location: %s\r\n" "Penalty: %d\r\n", q->name, mem->interface, penalty); - + ao2_ref(mem, -1); } } ao2_unlock(q); @@ -4645,6 +4645,7 @@ static int get_member_penalty(char *queuename, char *interface) ao2_lock(q); if ((mem = interface_exists(q, interface))) { penalty = mem->penalty; + ao2_ref(mem, -1); ao2_unlock(q); queue_unref(q); return penalty;