From: Arnaud Le Blanc Date: Mon, 8 Sep 2008 09:20:33 +0000 (+0000) Subject: Fix the "Content-Type contains ';'" case in rfc1867 post handler X-Git-Tag: BEFORE_HEAD_NS_CHANGE~461 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e6a1cc4a19ca85c6c57cf3f00ab164db7cfb5f5;p=php Fix the "Content-Type contains ';'" case in rfc1867 post handler --- diff --git a/main/rfc1867.c b/main/rfc1867.c index 21642c59ff..5d66b00220 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -1484,6 +1484,7 @@ var_done: s = u_strchr(ucd, 0x3b /*';'*/); if (s != NULL) { *s = 0; + ucd_len = u_strlen(ucd); } }