mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-14 08:05:37 +00:00
[mod_sofia] Fix use of uninitialized network_ip in sofia_handle_sip_r_invite()
This commit is contained in:
parent
cfdd1d9be8
commit
f348ab9d38
@ -6516,7 +6516,7 @@ static void sofia_handle_sip_r_invite(switch_core_session_t *session, int status
|
||||
const char *uuid;
|
||||
switch_core_session_t *other_session;
|
||||
private_object_t *tech_pvt = switch_core_session_get_private(session);
|
||||
char network_ip[80];
|
||||
char network_ip[80] = "";
|
||||
int network_port = 0;
|
||||
switch_caller_profile_t *caller_profile = NULL;
|
||||
int has_t38 = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user