mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
- kill local redeclaration by using a less common name
This commit is contained in:
parent
e3d1ab787f
commit
fc4853f34b
1 changed files with 4 additions and 4 deletions
|
@ -114,10 +114,10 @@
|
|||
|
||||
#define PHP_FILTER_GET_LONG_OPT(zv, opt) { \
|
||||
if (Z_TYPE_PP(zv) != IS_LONG) { \
|
||||
zval tmp = **zv; \
|
||||
zval_copy_ctor(&tmp); \
|
||||
convert_to_long(&tmp); \
|
||||
opt = Z_LVAL(tmp); \
|
||||
zval ___tmp = **zv; \
|
||||
zval_copy_ctor(&___tmp); \
|
||||
convert_to_long(&___tmp); \
|
||||
opt = Z_LVAL(___tmp); \
|
||||
} else { \
|
||||
opt = Z_LVAL_PP(zv); \
|
||||
} \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue