mirror of https://git.ffmpeg.org/ffmpeg.git
avio: fix sizeof argument
CC: libav-stable@libav.org Bug-Id: CID 732284
This commit is contained in:
parent
8ab3b71e4b
commit
02484d1a93
|
@ -361,7 +361,7 @@ int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
|
|||
if (!h->prot->url_get_multi_file_handle) {
|
||||
if (!h->prot->url_get_file_handle)
|
||||
return AVERROR(ENOSYS);
|
||||
*handles = av_malloc(sizeof(*handles));
|
||||
*handles = av_malloc(sizeof(**handles));
|
||||
if (!*handles)
|
||||
return AVERROR(ENOMEM);
|
||||
*numhandles = 1;
|
||||
|
|
Loading…
Reference in New Issue