actually pointed anywhere.
? ? ??? 200?, Version 5.0.0
- Moved extensions to PECL (http://pear.php.net/): (James, Tal)
. ext/fribidi
+- Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
- Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
- Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
- Changed get_extension_funcs() to return list of the built-in Zend Engine
return 0;
}
- efree(ftp->pwd);
+ if (ftp->pwd)
+ efree(ftp->pwd);
if (!ftp_putcmd(ftp, "CWD", dir)) {
return 0;
return 0;
}
- efree(ftp->pwd);
+ if (ftp->pwd)
+ efree(ftp->pwd);
if (!ftp_putcmd(ftp, "CDUP", NULL)) {
return 0;