- kill local redeclaration by using a less common name

This commit is contained in:
Pierre Joye 2011-01-23 09:46:06 +00:00
parent e3d1ab787f
commit fc4853f34b

View file

@ -114,10 +114,10 @@
#define PHP_FILTER_GET_LONG_OPT(zv, opt) { \ #define PHP_FILTER_GET_LONG_OPT(zv, opt) { \
if (Z_TYPE_PP(zv) != IS_LONG) { \ if (Z_TYPE_PP(zv) != IS_LONG) { \
zval tmp = **zv; \ zval ___tmp = **zv; \
zval_copy_ctor(&tmp); \ zval_copy_ctor(&___tmp); \
convert_to_long(&tmp); \ convert_to_long(&___tmp); \
opt = Z_LVAL(tmp); \ opt = Z_LVAL(___tmp); \
} else { \ } else { \
opt = Z_LVAL_PP(zv); \ opt = Z_LVAL_PP(zv); \
} \ } \