* 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

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