Re: [PHP-DEV] Suggested fix for bug #22592

2003-03-16 Thread Moriyoshi Koizumi
Andi Gutmans <[EMAIL PROTECTED]> wrote: > It indeed does look very hackish. Is this bug the same bug as the last > patch of yours addressed? Not the same, but those are similar in the point that both are basically because of the current engine's limitation in handling temporary variables. (If

Re: [PHP-DEV] Suggested fix for bug #22592

2003-03-15 Thread Andi Gutmans
It indeed does look very hackish. Is this bug the same bug as the last patch of yours addressed? I'll try and take a look at the bug report this week. I'm not quite sure this can/should be fixed. AFAIK the return value of $str[1] = '*' is the updated string itself and not the assigned '*'. Andi

[PHP-DEV] Suggested fix for bug #22592

2003-03-15 Thread Moriyoshi Koizumi
Attached is a suggested fix for bug #22592, which has finally come out of a successful long-hour-introspection with zend_execute.c. Although the patch actually does somewhat hackish things and should appear to be invalid, I believe it's the right one. Moriyoshi Index: Zend/zend_execute.c ==