mirror of
https://github.com/php/php-src.git
synced 2025-08-17 06:28:50 +02:00
ZVAL_BOOL(v,0) -> ZVAL_FALSE(v)
This commit is contained in:
parent
07ea068454
commit
0ef0f8e32b
16 changed files with 33 additions and 34 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue