summaryrefslogtreecommitdiff
path: root/src/win32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/win32.cpp')
-rw-r--r--src/win32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32.cpp b/src/win32.cpp
index e0298a0f8..0e3d4f4ef 100644
--- a/src/win32.cpp
+++ b/src/win32.cpp
@@ -322,7 +322,7 @@ static void SubmitFile(HWND wnd, const TCHAR *file)
size = GetFileSize(h, NULL);
if (size > 500000) goto error1;
- mem = malloc(size);
+ mem = MallocT<byte>(size);
if (mem == NULL) goto error1;
if (!ReadFile(h, mem, size, &read, NULL) || read != size) goto error2;