* fhandler_socket.cc (fhandler_socket::fhandler_socket): Revert

memory allocation to use cmalloc again.
This commit is contained in:
Corinna Vinschen 2001-09-19 15:50:54 +00:00
parent 18508302f9
commit 487fb5f1c4
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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));
}