From: Mathieu Rene Date: Wed, 17 Feb 2010 01:01:13 +0000 (+0000) Subject: don't free the event subclass in switch_event_unbind_callback(). thx crienzo X-Git-Tag: v1.0.6~459 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a835b4bcea27ef87d095f6085a0cd74945f21ea6;p=thirdparty%2Ffreeswitch.git don't free the event subclass in switch_event_unbind_callback(). thx crienzo git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16666 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_event.c b/src/switch_event.c index 40ea9e1fa0..64ef1b3175 100644 --- a/src/switch_event.c +++ b/src/switch_event.c @@ -1269,11 +1269,6 @@ SWITCH_DECLARE(switch_status_t) switch_event_unbind_callback(switch_event_callba } switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Event Binding deleted for %s:%s\n", n->id, switch_event_name(n->event_id)); - if (n->subclass) { - FREE(n->subclass->owner); - FREE(n->subclass->name); - FREE(n->subclass); - } FREE(n->id); FREE(n); status = SWITCH_STATUS_SUCCESS;