avio: fix sizeof argument

CC: libav-stable@libav.org
Bug-Id: CID 732284
This commit is contained in:
Michael Niedermayer 2014-10-18 01:12:12 +01:00 committed by Vittorio Giovara
parent 8ab3b71e4b
commit 02484d1a93
1 changed files with 1 additions and 1 deletions

View File

@ -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;