requests (Fixes CVE-2010-0397, bug #51288). (Raphael Geissert)
- Fixed 64-bit integer overflow in mhash_keygen_s2k(). (Clément LECIGNE, Stas)
+- Fixed bug #52010 (open_basedir restrictions mismatch on vacuum command).
+ (Ilia)
- Fixed bug #51991 (spl_autoload and *nix support with namespace). (Felipe)
- Fixed bug #51911 (ReflectionParameter::getDefaultValue() memory leaks with
constant array). (Felipe)
switch (access_type) {
case SQLITE_ATTACH:
{
- if (strncmp(arg3, ":memory:", sizeof(":memory:")-1)) {
+ if (strncmp(arg3, ":memory:", sizeof(":memory:")-1) && *arg3) {
TSRMLS_FETCH();
#if PHP_API_VERSION < 20100412