summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
Diffstat (limited to 'compat')
-rw-r--r--compat/w32dlfcn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/w32dlfcn.h b/compat/w32dlfcn.h
index c83bdc9333..52a94efafb 100644
--- a/compat/w32dlfcn.h
+++ b/compat/w32dlfcn.h
@@ -42,7 +42,7 @@ static inline HMODULE win32_dlopen(const char *name)
DWORD pathlen;
if (utf8towchar(name, &name_w))
goto exit;
- path = (wchar_t *)av_mallocz_array(MAX_PATH, sizeof(wchar_t));
+ path = (wchar_t *)av_calloc(MAX_PATH, sizeof(wchar_t));
// Try local directory first
pathlen = GetModuleFileNameW(NULL, path, MAX_PATH);
pathlen = wcsrchr(path, '\\') - path;