Re: [PHP-DEV] Re: Problem with leak detection

2005-06-20 Thread Marcus Boerger
Hello Wez, i used linux so there seems to be a problem with either flushing or the fprintf not being called at all. regards marcus Monday, June 20, 2005, 10:55:43 PM, you wrote: > That should probably just be: > #if PHP_WIN32 > OutputDebugString(...); > #endif > fprintf(stderr, ...

Re: [PHP-DEV] Re: Problem with leak detection

2005-06-20 Thread Wez Furlong
That should probably just be: #if PHP_WIN32 OutputDebugString(...); #endif fprintf(stderr, ...); On 6/20/05, Michael Wallner <[EMAIL PROTECTED]> wrote: > Sorry, but I cannot speak for exit(), but I usually replace all occurrences of > > #if PHP_WIN32 > OutputDebugString(...); >

[PHP-DEV] Re: Problem with leak detection

2005-06-20 Thread Michael Wallner
Marcus Boerger wrote: i just stumbled over a strange issue while testing. Some of my tests have exit(0) at the end for easier test verification. Now i found a new one that has a few memleaks but only reports them if i drop that exit(0) line. Is this something we need to fix (e.g. exit() omits