* fhandler_socket.cc (fhandler_socket::fhandler_socket): Revert
memory allocation to use cmalloc again.
This commit is contained in:
parent
18508302f9
commit
487fb5f1c4
|
@ -1,3 +1,8 @@
|
|||
Wed Sep 19 17:49:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_socket.cc (fhandler_socket::fhandler_socket): Revert
|
||||
memory allocation to use cmalloc again.
|
||||
|
||||
Tue Sep 18 21:04:26 2001 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* cygwin.din (__argv): Export.
|
||||
|
|
|
@ -45,7 +45,7 @@ fhandler_socket::fhandler_socket (const char *name) :
|
|||
{
|
||||
set_cb (sizeof *this);
|
||||
set_need_fork_fixup ();
|
||||
prot_info_ptr = (LPWSAPROTOCOL_INFOA) ccalloc (HEAP_BUF, 1,
|
||||
prot_info_ptr = (LPWSAPROTOCOL_INFOA) cmalloc (HEAP_BUF,
|
||||
sizeof (WSAPROTOCOL_INFOA));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue