[asterisk-commits] russell: branch 1.4 r104334 - /branches/1.4/apps/app_chanspy.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Feb 26 19:15:02 CST 2008
Author: russell
Date: Tue Feb 26 19:15:02 2008
New Revision: 104334
URL: http://svn.digium.com/view/asterisk?view=rev&rev=104334
Log:
Avoid some recursion in the cleanup code for the chanspy datastore
(closes issue #12076, reported by junky, patched by me)
Modified:
branches/1.4/apps/app_chanspy.c
Modified: branches/1.4/apps/app_chanspy.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_chanspy.c?view=diff&rev=104334&r1=104333&r2=104334
==============================================================================
--- branches/1.4/apps/app_chanspy.c (original)
+++ branches/1.4/apps/app_chanspy.c Tue Feb 26 19:15:02 2008
@@ -409,6 +409,8 @@
if ((datastore = ast_channel_datastore_find(chan, &chanspy_ds_info, NULL))) {
ast_channel_datastore_remove(chan, datastore);
/* chanspy_ds->chan is NULL after this call */
+ chanspy_ds_destroy(datastore->data);
+ datastore->data = NULL;
ast_channel_datastore_free(datastore);
}
ast_channel_unlock(chan);
More information about the asterisk-commits
mailing list