diff --git a/dlls/winspool/info.c b/dlls/winspool/info.c index 0a647c5b7f1..b9f947bf9f4 100644 --- a/dlls/winspool/info.c +++ b/dlls/winspool/info.c @@ -435,7 +435,7 @@ static HANDLE WINSPOOL_GetOpenedPrinterEntry( LPCWSTR name ) if (i >= nb_printers) { - LPWSTR *new_array = HeapReAlloc( GetProcessHeap(), 0, printer_array, + LPWSTR *new_array = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, printer_array, (nb_printers + 16) * sizeof(*new_array) ); if (!new_array) return 0; printer_array = new_array;