avoiding initial segfault (MODENDP-265)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15427 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-11-11 15:11:55 +00:00
parent 57169ef9fb
commit fa33d47640
1 changed files with 3 additions and 4 deletions

View File

@ -1170,16 +1170,15 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
const char *var;
const char *presence_data = switch_channel_get_variable(channel, "presence_data");
const char *presence_id = switch_channel_get_variable(channel, "presence_id");
char *sql;
if (presence_id || presence_data) {
sql = switch_mprintf("update sip_dialogs set presence_id='%q',presence_data='%q' "
char *sql = switch_mprintf("update sip_dialogs set presence_id='%q',presence_data='%q' "
"where uuid='%s';\n", switch_str_nil(presence_id), switch_str_nil(presence_data),
switch_core_session_get_uuid(session));
switch_assert(sql);
sofia_glue_execute_sql(tech_pvt->profile, &sql, SWITCH_TRUE);
}
switch_assert(sql);
sofia_glue_execute_sql(tech_pvt->profile, &sql, SWITCH_TRUE);
if ((var = switch_channel_get_variable(channel, SOFIA_SECURE_MEDIA_VARIABLE)) && switch_true(var)) {