php-src/ext
Anatol Belski 0630e3bc03 Reduce error buffer size
120 bytes is ample, the doc says.
2018-07-05 17:24:38 +02:00
..
bcmath Remove build system files of bundled library libbcmath 2018-05-29 18:56:50 +02:00
bz2 Avoid useless checks, using zend_string_efree(), in cases where the string is known to be a temporary allocated zend_string. 2018-05-08 17:30:15 +03:00
calendar Remove old SVN keywords substitutions 2018-06-16 13:04:30 +02:00
com_dotnet Export standard object handlers, to avoid indirect access 2018-05-31 11:57:22 +03:00
ctype Avoid useless copying and conversion 2018-07-04 01:09:00 +03:00
curl Use zval_ptr_dtor_nogc() instead of zval_dtor() inplaces where circular-references are not possible 2018-07-05 15:25:55 +03:00
date Use zval_ptr_dtor() instead of zval_dtor() in internal functions that destroy new created object (This is safer and produces less code) 2018-07-05 11:54:26 +03:00
dba Minor cleanup in regards to magic_quotes in tests: 2018-06-26 22:38:00 +02:00
dom Use zval_ptr_dtor() imstead of zval_dtor() 2018-07-05 17:55:54 +03:00
enchant Remove enchant version from the phpinfo output 2018-06-04 18:40:38 +02:00
exif Fixed incorrrecr zval_dtor() usage to replace value of argument passed by reference, that may lead to memory leaks. 2018-07-05 10:57:49 +03:00
fileinfo Bump fileinfo extension version to PHP release version 2018-06-15 00:28:28 +02:00
filter Use zval_ptr_dtor() imstead of zval_dtor() 2018-07-05 17:55:54 +03:00
ftp Fixed incorrrecr zval_dtor() usage to replace value of argument passed by reference, that may lead to memory leaks. 2018-07-05 10:57:49 +03:00
gd Remove unnecessary uses of z/ parameters 2018-06-25 22:27:42 +02:00
gettext Avoding memory allocation if no translastion found 2018-02-26 14:52:45 +08:00
gmp Fixed wrong zval_dtor() usage 2018-07-05 13:37:59 +03:00
hash Use zval_ptr_dtor() instead of zval_dtor() in internal functions that destroy new created object (This is safer and produces less code) 2018-07-05 11:54:26 +03:00
iconv Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized destructors. 2018-07-04 19:22:24 +03:00
imap Use zval_ptr_dtor() instead of zval_dtor() in internal functions that destroy new created object (This is safer and produces less code) 2018-07-05 11:54:26 +03:00
interbase Use zval_ptr_dtor() imstead of zval_dtor() 2018-07-05 17:55:54 +03:00
intl Use zval_ptr_dtor() instead of legacy zval_dtor(), to destroy unused values returned from PHP functions (they may be circular data structures). 2018-07-05 14:09:47 +03:00
json Use zval_ptr_dtor_nogc() in JSON parser (it can't produce circular data structures) 2018-07-05 15:07:16 +03:00
ldap Fixed incorrrecr zval_dtor() usage to replace value of argument passed by reference, that may lead to memory leaks. 2018-07-05 10:57:49 +03:00
libxml Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
mbstring Reduce error buffer size 2018-07-05 17:24:38 +02:00
mysqli Replace zval_dtor() with specialized destructors 2018-07-05 13:55:56 +03:00
mysqlnd Use zval_ptr_dtor() to replace bound variables (original values nay be circular structures). 2018-07-05 16:46:38 +03:00
oci8 Remove revision from OCI8 extension 2018-06-10 21:22:12 +02:00
odbc Remove some old occurrences of configure.in 2018-06-04 17:59:00 +02:00
opcache Reduce error buffer size 2018-07-05 17:24:38 +02:00
openssl Use zval_ptr_dtor() instead of zval_dtor() in internal functions that destroy new created object (This is safer and produces less code) 2018-07-05 11:54:26 +03:00
pcntl Fixed incorrrecr zval_dtor() usage to replace value of argument passed by reference, that may lead to memory leaks. 2018-07-05 10:57:49 +03:00
pcre Reduce error buffer size 2018-07-05 17:24:38 +02:00
pdo Replace zval_dtor() with specialized destructors 2018-07-05 13:32:39 +03:00
pdo_dblib year++ 2018-01-02 12:57:58 +08:00
pdo_firebird Replace zval_dtor() with specialized destructors 2018-07-05 13:32:39 +03:00
pdo_mysql Use zval_ptr_dtor() imstead of zval_dtor() 2018-07-05 17:55:54 +03:00
pdo_oci Replace zval_dtor() with specialized destructors 2018-07-05 14:17:53 +03:00
pdo_odbc Trailing whitespaces 2018-01-03 14:38:00 +01:00
pdo_pgsql Changed php_add[c]slashes prototypes (removed should_free argument) 2018-06-29 00:19:16 +03:00
pdo_sqlite Use zend_string_release_ex() instread of zend_string_release() in places, where we sure about string persistence. 2018-05-28 16:27:12 +03:00
pgsql Reduce error buffer size 2018-07-05 17:24:38 +02:00
phar Use zval_ptr_dtor() imstead of zval_dtor() 2018-07-05 17:55:54 +03:00
posix Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized destructors. 2018-07-04 19:22:24 +03:00
pspell Use int instead of long in protos 2018-02-23 11:06:20 +01:00
readline Removed useless zval_ptr_dtor() 2018-05-29 17:58:06 +03:00
recode Remove revision for recode from phpinfo 2018-06-02 13:43:49 +02:00
reflection Use zval_ptr_dtor() instead of zval_dtor() in internal functions that destroy new created object (This is safer and produces less code) 2018-07-05 14:25:17 +03:00
session Use zval_ptr_dtor() imstead of zval_dtor() 2018-07-05 17:55:54 +03:00
shmop [ci skip] Remove space between function name and open parentheses 2018-02-24 11:50:39 +01:00
simplexml Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized destructors. 2018-07-04 19:22:24 +03:00
skeleton improve extension skeleton generator 2018-02-22 08:04:33 +01:00
snmp Bump snmp extension version to PHP version 2018-06-15 12:55:21 +02:00
soap It's safer to use zval_ptr_dtor() for iterator keys. 2018-07-05 16:56:52 +03:00
sockets Use zval_ptr_dtor() imstead of zval_dtor() 2018-07-05 17:55:54 +03:00
sodium Merge branch 'PHP-7.2' 2018-06-08 23:02:25 +02:00
spl Replace zval_dtor() with specialized destructors 2018-07-05 13:32:39 +03:00
sqlite3 Use zval_ptr_dtor() instead of zval_dtor() in internal functions that destroy new created object (This is safer and produces less code) 2018-07-05 11:54:26 +03:00
standard Use zval_ptr_dtor() instead of legacy zval_dtor(), to destroy unused values returned from PHP functions (they may be circular data structures). 2018-07-05 14:09:47 +03:00
sysvmsg Fixed incorrrecr zval_dtor() usage to replace value of argument passed by reference, that may lead to memory leaks. 2018-07-05 10:57:49 +03:00
sysvsem Sync sysvsem and sysvshm versions in phpinfo 2018-06-03 04:05:46 +02:00
sysvshm Sync sysvsem and sysvshm versions in phpinfo 2018-06-03 04:05:46 +02:00
tidy Sync tidy phpinfo extension version 2018-06-04 17:10:49 +02:00
tokenizer Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized destructors. 2018-07-04 19:22:24 +03:00
wddx Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized destructors. 2018-07-04 19:22:24 +03:00
xml Use zend_string_release_ex() instread of zend_string_release() in places, where we sure about string persistence. 2018-05-28 16:27:12 +03:00
xmlreader Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized destructors. 2018-07-04 19:22:24 +03:00
xmlrpc Remove sqlite and xmlrpc extension versions from phpinfo output 2018-07-03 17:01:17 +02:00
xmlwriter Export standard object handlers, to avoid indirect access 2018-05-31 11:57:22 +03:00
xsl Update http to https 2018-06-25 08:31:32 +02:00
zend_test Add test for void return type on internal function 2018-06-30 20:14:15 +02:00
zip Fixed incorrrecr zval_dtor() usage to replace value of argument passed by reference, that may lead to memory leaks. 2018-07-05 10:57:49 +03:00
zlib Use zend_string_release_ex() instread of zend_string_release() in places, where we sure about string persistence. 2018-05-28 16:27:12 +03:00
ext_skel.php Enhance the ext_skel.php script file 2018-05-26 22:00:17 +02:00