don't choose 0 port for proxy mode

This commit is contained in:
Anthony Minessale 2013-03-22 10:34:31 -05:00
parent 0ca2c2b0e7
commit 818f8521e0
1 changed files with 5 additions and 1 deletions

View File

@ -1541,7 +1541,11 @@ switch_status_t sofia_glue_tech_proxy_remote_addr(private_object_t *tech_pvt, co
}
if ((p = (char *) switch_stristr("m=image ", sdp_str))) {
port_ptr = p + 8;
char *tmp = p + 8;
if (tmp && atoi(tmp)) {
port_ptr = tmp;
}
}
if ((p = (char *) switch_stristr("m=video ", sdp_str))) {