[asterisk-commits] kmoore: branch dlee/stasis-core r382548 - /team/dlee/stasis-core/main/channel.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Mar 6 16:46:23 CST 2013
Author: kmoore
Date: Wed Mar 6 16:46:19 2013
New Revision: 382548
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=382548
Log:
Fix varset message type ref leak
Modified:
team/dlee/stasis-core/main/channel.c
Modified: team/dlee/stasis-core/main/channel.c
URL: http://svnview.digium.com/svn/asterisk/team/dlee/stasis-core/main/channel.c?view=diff&rev=382548&r1=382547&r2=382548
==============================================================================
--- team/dlee/stasis-core/main/channel.c (original)
+++ team/dlee/stasis-core/main/channel.c Wed Mar 6 16:46:19 2013
@@ -8631,6 +8631,8 @@
{
ao2_cleanup(__channel_snapshot);
__channel_snapshot = NULL;
+ ao2_cleanup(__channel_varset_event);
+ __channel_varset_event = NULL;
ao2_cleanup(__channel_events_all);
__channel_events_all = NULL;
stasis_caching_unsubscribe(__channel_events_all_cached);
More information about the asterisk-commits
mailing list