]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Based on the boundary found move over the correct amount.
authorJoshua Colp <jcolp@digium.com>
Tue, 15 Jan 2008 20:08:43 +0000 (20:08 +0000)
committerJoshua Colp <jcolp@digium.com>
Tue, 15 Jan 2008 20:08:43 +0000 (20:08 +0000)
(closes issue #11750)
Reported by: tasker

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@98934 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 418f4df85210d1553538146bf1344339219aad73..f04dd544e27af306d5a89ce122550a937cefeb2c 100644 (file)
@@ -4864,10 +4864,13 @@ static int find_sdp(struct sip_request *req)
                return 0;
 
        /* if there is no boundary marker, it's invalid */
-       if (!(search = strcasestr(content_type, ";boundary=")) && (!(search = strcasestr(content_type, "; boundary="))))
+       if ((search = strcasestr(content_type, ";boundary=")))
+               search += 10;
+       else if ((search = strcasestr(content_type, "; boundary=")))
+               search += 11;
+       else
                return 0;
 
-       search += 10;
        if (ast_strlen_zero(search))
                return 0;