From: Brett Bryant Date: Tue, 15 Jul 2008 18:14:02 +0000 (+0000) Subject: Fix memory leak in app_queue when a device state is changed but it isn't X-Git-Tag: 1.6.2.0-beta1~1677 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe874bfe6b3b1acb79217d34e713c134d720606a;p=thirdparty%2Fasterisk.git Fix memory leak in app_queue when a device state is changed but it isn't a member of any queue. (closes issue #13073) Reported by: eliel Patches: app_queue.c.patch uploaded by eliel (license 64) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@131015 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 61630d14d8..fef9685bd8 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -782,6 +782,7 @@ static int handle_statechange(void *datap) if (!curint) { if (option_debug > 2) ast_log(LOG_DEBUG, "Device '%s/%s' changed to state '%d' (%s) but we don't care because they're not a member of any queue.\n", technology, loc, sc->state, devstate2str(sc->state)); + ast_free(sc); return 0; }