diff --git a/src/win32.cpp b/src/win32.cpp --- a/src/win32.cpp +++ b/src/win32.cpp @@ -322,7 +322,7 @@ static void SubmitFile(HWND wnd, const T size = GetFileSize(h, NULL); if (size > 500000) goto error1; - mem = malloc(size); + mem = MallocT(size); if (mem == NULL) goto error1; if (!ReadFile(h, mem, size, &read, NULL) || read != size) goto error2;