diff options
| author | Michael Niedermayer <[email protected]> | 2014-05-05 19:00:38 +0200 | 
|---|---|---|
| committer | Michael Niedermayer <[email protected]> | 2014-05-05 19:00:38 +0200 | 
| commit | 4aa7848eb865c8605de56e73e7e035ee15fbf9af (patch) | |
| tree | a1eec7398dcc417acd9dc4677e8ab9534ed935ac | |
| parent | e77ffaa0ac2615400ffae1024e0325920f56d886 (diff) | |
avutil/file_open: Use av_mallocz_array()
Signed-off-by: Michael Niedermayer <[email protected]>
| -rw-r--r-- | libavutil/file_open.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/file_open.c b/libavutil/file_open.c index bcdd26ae35..f3164ebe68 100644 --- a/libavutil/file_open.c +++ b/libavutil/file_open.c @@ -48,7 +48,7 @@ static int win32_open(const char *filename_utf8, int oflag, int pmode)      num_chars = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, filename_utf8, -1, NULL, 0);      if (num_chars <= 0)          goto fallback; -    filename_w = av_mallocz(sizeof(wchar_t) * num_chars); +    filename_w = av_mallocz_array(num_chars, sizeof(wchar_t));      if (!filename_w) {          errno = ENOMEM;          return -1;  | 
