- Fixed bug #47037 (No error when using fopen with emty string)
Patch by Cristian Rodriguez R.
(Fixes CVE-2008-5498) (Scott)
- Fixed a segfault when malformed string is passed to json_decode(). (Scott)
+- Fixed bug #47037 (No error when using fopen with emty string).
+ (Cristian Rodriguez R.)
- Fixed bug #47035 (dns_get_record returns a garbage byte at the end of a TXT
record). (Felipe)
- Fixed bug #47027 (var_export doesn't show numeric indices on ArrayObject).
}
if (!path || !*path) {
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Filename cannot be empty");
return NULL;
}