1
0
mirror of https://github.com/php/php-src.git synced 2026-04-08 16:43:44 +02:00

Fix buglet

This commit is contained in:
Zeev Suraski
2000-01-01 15:31:59 +00:00
parent 2fd8cbff2a
commit a6d4b30d19

View File

@@ -86,7 +86,7 @@ ZEND_API void convert_scalar_to_number(zval *op)
(holder).type = IS_LONG; \
(op) = &(holder); \
} else if ((op)->type==IS_UNSET) { \
(holder).type = IS_UNSET; \
(holder).type = IS_LONG; \
(op) = &(holder); \
}