[Freeswitch-svn] [commit] r7733 - freeswitch/trunk/src

Freeswitch SVN anthm at freeswitch.org
Mon Feb 25 11:41:28 EST 2008


Author: anthm
Date: Mon Feb 25 11:41:28 2008
New Revision: 7733

Modified:
   freeswitch/trunk/src/switch_rtp.c

Log:
update

Modified: freeswitch/trunk/src/switch_rtp.c
==============================================================================
--- freeswitch/trunk/src/switch_rtp.c	(original)
+++ freeswitch/trunk/src/switch_rtp.c	Mon Feb 25 11:41:28 2008
@@ -857,11 +857,11 @@
 	switch_rtp_kill_socket(*rtp_session);
 
 	while(switch_queue_trypop((*rtp_session)->dtmf_data.dtmf_inqueue, &pop) == SWITCH_STATUS_SUCCESS) {
-		free(pop);
+		switch_safe_free(pop);
 	}
 	
 	while(switch_queue_trypop((*rtp_session)->dtmf_data.dtmf_queue, &pop) == SWITCH_STATUS_SUCCESS) {
-		free(pop);
+		switch_safe_free(pop);
 	}
 
 	if ((*rtp_session)->jb) {



More information about the Freeswitch-svn mailing list