cygwin 1.3.17-1 gethostbyname() leak

2002-12-10 Thread Noel Gordon
Anyone else confirm that the following program compiled under gcc 3.2, cygwin 1.3.17-1, on Win2k leaks memory? /*---*/ #include #include int main() { struct hostent *host; while ( 1 ) { if ( ( host = gethostbyname( "localhost"

Re: cygwin 1.3.17-1 gethostbyname() leak

2002-12-10 Thread Noel Gordon
> On Tue, 10 Dec 2002, Noel Gordon wrote: > > > Anyone else confirm that the following program compiled under > > gcc 3.2, cygwin 1.3.17-1, on Win2k leaks memory? > > > > /*---*/ > > > >