[PHP-DEV] False memory leak from debugger.c From: Jim Winstead (jimw <email protected>)
Date: 05/30/98

(This may be a Win32-only thing, or only when the debugger is enabled.)

The find_hostname() function uses estrndup(), but it happens during the
first time the memory manager is initialized (module startup?) so when
that gets closed, it frees the memory. I guess the correct solution
is to use strdup() and free the memory in php3_mshutdown_debugger.

Jim