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

Freeswitch SVN mikej at freeswitch.org
Tue Dec 11 14:54:04 EST 2007


Author: mikej
Date: Tue Dec 11 14:54:04 2007
New Revision: 6663

Modified:
   freeswitch/trunk/src/switch_channel.c

Log:
cleanups

Modified: freeswitch/trunk/src/switch_channel.c
==============================================================================
--- freeswitch/trunk/src/switch_channel.c	(original)
+++ freeswitch/trunk/src/switch_channel.c	Tue Dec 11 14:54:04 2007
@@ -937,6 +937,7 @@
 SWITCH_DECLARE(void) switch_channel_set_originator_caller_profile(switch_channel_t *channel, switch_caller_profile_t *caller_profile)
 {
 	switch_assert(channel != NULL);
+	switch_assert(channel->caller_profile != NULL);
 	switch_mutex_lock(channel->profile_mutex);
 	if (channel->caller_profile) {
 		caller_profile->next = channel->caller_profile->originator_caller_profile;
@@ -949,6 +950,7 @@
 SWITCH_DECLARE(void) switch_channel_set_originatee_caller_profile(switch_channel_t *channel, switch_caller_profile_t *caller_profile)
 {
 	switch_assert(channel != NULL);
+	switch_assert(channel->caller_profile != NULL);
 
 	switch_mutex_lock(channel->profile_mutex);
 	if (channel->caller_profile) {



More information about the Freeswitch-svn mailing list