lbarnaud Mon Sep 8 09:20:33 2008 UTC
Modified files:
/php-src/main rfc1867.c
Log:
Fix the "Content-Type contains ';'" case in rfc1867 post handler
http://cvs.php.net/viewvc.cgi/php-src/main/rfc1867.c?r1=1.199&r2=1.200&diff_format=u
Index: php-src/main/rfc1867.c
diff -u php-src/main/rfc1867.c:1.199 php-src/main/rfc1867.c:1.200
--- php-src/main/rfc1867.c:1.199 Mon Sep 8 09:12:51 2008
+++ php-src/main/rfc1867.c Mon Sep 8 09:20:33 2008
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: rfc1867.c,v 1.199 2008/09/08 09:12:51 lbarnaud Exp $ */
+/* $Id: rfc1867.c,v 1.200 2008/09/08 09:20:33 lbarnaud Exp $ */
/*
* This product includes software developed by the Apache Group
@@ -1484,6 +1484,7 @@
s = u_strchr(ucd, 0x3b /*';'*/);
if (s != NULL) {
*s = 0;
+ ucd_len = u_strlen(ucd);
}
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php