mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
avformat/os_support: try to fix build when included from a c++ file like libavdevice/decklink*cpp
Found-by: Zeranoe Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8cd80b5fcb
commit
d0879a93ea
@ -154,7 +154,7 @@ static inline int utf8towchar(const char *filename_utf8, wchar_t **filename_w)
|
|||||||
*filename_w = NULL;
|
*filename_w = NULL;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
*filename_w = av_mallocz(sizeof(wchar_t) * num_chars);
|
*filename_w = (wchar_t *)av_mallocz(sizeof(wchar_t) * num_chars);
|
||||||
if (!*filename_w) {
|
if (!*filename_w) {
|
||||||
errno = ENOMEM;
|
errno = ENOMEM;
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user