Re: [PHP-DEV] Concern about changing zval's passed by reference

2003-11-27 Thread Robert Twitty
hanks Marcus zval_dtor is what I need. -- bob On Thu, 27 Nov 2003, Marcus Boerger wrote: > Hello Robert, > > Wednesday, November 26, 2003, 11:32:48 PM, you wrote: > > > Hello > > > I am using the macros ZVAL_BOOL, ZVAL_LONG, ZVAL_DOUBLE and ZVAL_STRING to > > change the value of a zval passed b

[PHP-DEV] Concern about changing zval's passed by reference

2003-11-26 Thread Robert Twitty
Hello I am using the macros ZVAL_BOOL, ZVAL_LONG, ZVAL_DOUBLE and ZVAL_STRING to change the value of a zval passed by reference. I noticed that these macros do not free the original value if it's a string, array, object or resource prior to the change. This causes a possible memory leak. Is thi