From: Michael Jerris Date: Tue, 16 Jun 2009 16:06:37 +0000 (+0000) Subject: attempt to fix SFSIP-150 X-Git-Tag: v1.0.4~482 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=471b78b784ff0f3193debe4deae17a2a1ae28da6;p=thirdparty%2Ffreeswitch.git attempt to fix SFSIP-150 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13783 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index 3f3877b875..b56f9f7037 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -2676,7 +2676,7 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session if (!strncasecmp(dest, "sip:", 4) || !strncasecmp(dest, "sips:", 5)) { tech_pvt->dest = switch_core_session_strdup(nsession, dest); } else if ((host = strchr(dest, '%'))) { - char buf[128]; + char buf[1024]; *host = '@'; tech_pvt->e_dest = switch_core_session_strdup(nsession, dest); *host++ = '\0'; @@ -2689,7 +2689,7 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session goto error; } } else if (!(host = strchr(dest, '@'))) { - char buf[128]; + char buf[1024]; tech_pvt->e_dest = switch_core_session_strdup(nsession, dest); if (sofia_reg_find_reg_url(profile, dest, profile_name, buf, sizeof(buf))) { tech_pvt->dest = switch_core_session_strdup(nsession, buf);