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 leakage info)?

Sorry, but I cannot speak for exit(), but I usually replace all occurrences of

#if PHP_WIN32
        OutputDebugString(...);
#else
        fprintf(stderr, ...);
#endif

with just fprintf(stderr, ...) to see any mem-leaks on Win32-CLI.

JFYI.

Regards,
--
Mike

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to