secur32: Don't bother zeroing the handle table in SECUR32_initSchannelSP().

Handles are initialized when they're allocated.
This commit is contained in:
Henri Verbeet 2009-10-15 10:36:45 +02:00 committed by Alexandre Julliard
parent 226519efbc
commit 3e96881e4c
1 changed files with 1 additions and 1 deletions

View File

@ -1386,7 +1386,7 @@ void SECUR32_initSchannelSP(void)
pgnutls_global_set_log_function(schan_gnutls_log);
}
schan_handle_table = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, 64 * sizeof(*schan_handle_table));
schan_handle_table = HeapAlloc(GetProcessHeap(), 0, 64 * sizeof(*schan_handle_table));
if (!schan_handle_table)
{
ERR("Failed to allocate schannel handle table.\n");