mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix return type of zend_ini_dtor
This commit is contained in:
parent
c03ee19230
commit
adb09c98d2
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ ZEND_API int zend_parse_ini_string(char *str, zend_bool unbuffered_errors, int s
|
||||||
|
|
||||||
/* {{{ zval_ini_dtor()
|
/* {{{ zval_ini_dtor()
|
||||||
*/
|
*/
|
||||||
static int zval_ini_dtor(zval *zv)
|
static void zval_ini_dtor(zval *zv)
|
||||||
{
|
{
|
||||||
if (Z_TYPE_P(zv) == IS_STRING) {
|
if (Z_TYPE_P(zv) == IS_STRING) {
|
||||||
zend_string_release(Z_STR_P(zv));
|
zend_string_release(Z_STR_P(zv));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue