felipe Wed Jan 7 17:20:18 2009 UTC
Modified files: (Branch: PHP_5_3)
/php-src/ext/standard quot_print.c
Log:
- Fixed bug #47029 (quoted_printable_decode() produces duplicate warning)
Patch by Andy wharmby
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/quot_print.c?r1=1.29.2.2.2.1.2.5&r2=1.29.2.2.2.1.2.6&diff_format=u
Index: php-src/ext/standard/quot_print.c
diff -u php-src/ext/standard/quot_print.c:1.29.2.2.2.1.2.5
php-src/ext/standard/quot_print.c:1.29.2.2.2.1.2.6
--- php-src/ext/standard/quot_print.c:1.29.2.2.2.1.2.5 Wed Dec 31 11:15:45 2008
+++ php-src/ext/standard/quot_print.c Wed Jan 7 17:20:18 2009
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: quot_print.c,v 1.29.2.2.2.1.2.5 2008/12/31 11:15:45 sebastian Exp $ */
+/* $Id: quot_print.c,v 1.29.2.2.2.1.2.6 2009/01/07 17:20:18 felipe Exp $ */
#include <stdlib.h>
@@ -203,7 +203,7 @@
int arg1_len, i = 0, j = 0, k;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &arg1,
&arg1_len) == FAILURE) {
- WRONG_PARAM_COUNT;
+ return;
}
if (arg1_len == 0) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php