From: Russell Bryant Date: Tue, 31 Mar 2009 14:53:45 +0000 (+0000) Subject: Don't free() an astobj2 object. X-Git-Tag: 11.0.0-beta1~5153 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9c8758d6d2fd3d277b1b26adf464d180a8e7959;p=thirdparty%2Fasterisk.git Don't free() an astobj2 object. (closes issue #14672) Reported by: makoto git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@185261 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 1acf5bb430..b3dd532d50 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -1630,7 +1630,7 @@ static struct call_queue *alloc_queue(const char *queuename) if ((q = ao2_alloc(sizeof(*q), destroy_queue))) { if (ast_string_field_init(q, 64)) { - free(q); + ao2_ref(q, -1); return NULL; } ast_string_field_set(q, name, queuename);