From: Marc Olivier Chouinard Date: Thu, 4 Mar 2010 17:33:26 +0000 (+0000) Subject: mod_sofia: ilbc changes - I did an error in the patch I provided tony for r16898. X-Git-Tag: v1.0.6~240 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2de8961b2a3ab0dcee7f61d64de61ca6e9dcfb08;p=thirdparty%2Ffreeswitch.git mod_sofia: ilbc changes - I did an error in the patch I provided tony for r16898. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16900 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index 918184feca..3f8fd15c97 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -3525,8 +3525,8 @@ uint8_t sofia_glue_negotiate_sdp(switch_core_session_t *session, sdp_session_t * } if (!strcasecmp((char *) rm_encoding, "ilbc")) { - char *mode = NULL; - if ((mode = strstr(map->rm_fmtp, "mode=")) && mode) { + char *mode = strstr(map->rm_fmtp, "mode="); + if (mode && (mode + 5)) { codec_ms = atoi(mode + 5); } if (!codec_ms) {