1
0
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:
Thies C. Arntzen
2001-07-11 12:42:25 +00:00
parent 07ea068454
commit 0ef0f8e32b
16 changed files with 33 additions and 34 deletions

View File

@@ -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;