mirror of
https://github.com/php/php-src.git
synced 2026-03-27 01:32:22 +01:00
ZVAL_BOOL(v,0) -> ZVAL_FALSE(v)
This commit is contained in:
@@ -401,7 +401,7 @@ static int checkError(pval *value) {
|
||||
if (value->type == IS_EXCEPTION) {
|
||||
php_error(E_WARNING, "%s", value->value.str.val);
|
||||
efree(value->value.str.val);
|
||||
ZVAL_BOOL(value, 0);
|
||||
ZVAL_FALSE(value);
|
||||
return 1;
|
||||
};
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user