* pipe.cc (fhandler_pipe::open): Use 'cfree' to free buffer since it is now
allocated by cmalloc.
This commit is contained in:
parent
5da8b1281b
commit
0d8efc429f
|
@ -1,3 +1,8 @@
|
||||||
|
2005-09-17 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
* pipe.cc (fhandler_pipe::open): Use 'cfree' to free buffer since it is
|
||||||
|
now allocated by cmalloc.
|
||||||
|
|
||||||
2005-09-17 Corinna Vinschen <corinna@vinschen.de>
|
2005-09-17 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* net.cc (cygwin_inet_ntop): Change len argument to socklen_t to
|
* net.cc (cygwin_inet_ntop): Change len argument to socklen_t to
|
||||||
|
|
|
@ -119,7 +119,7 @@ fhandler_pipe::open (int flags, mode_t mode)
|
||||||
if (flags & O_NOINHERIT)
|
if (flags & O_NOINHERIT)
|
||||||
close_on_exec (true);
|
close_on_exec (true);
|
||||||
uninterruptible_io (fh->uninterruptible_io ());
|
uninterruptible_io (fh->uninterruptible_io ());
|
||||||
free (fh);
|
cfree (fh);
|
||||||
CloseHandle (proc);
|
CloseHandle (proc);
|
||||||
return 1;
|
return 1;
|
||||||
out:
|
out:
|
||||||
|
|
Loading…
Reference in New Issue