avienc: Replace av_realloc by av_realloc_f when relevant.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
71e23d39a3
commit
e47cfe9e5c
@ -558,7 +558,7 @@ static int avi_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
int cl = idx->entry / AVI_INDEX_CLUSTER_SIZE;
|
int cl = idx->entry / AVI_INDEX_CLUSTER_SIZE;
|
||||||
int id = idx->entry % AVI_INDEX_CLUSTER_SIZE;
|
int id = idx->entry % AVI_INDEX_CLUSTER_SIZE;
|
||||||
if (idx->ents_allocated <= idx->entry) {
|
if (idx->ents_allocated <= idx->entry) {
|
||||||
idx->cluster = av_realloc(idx->cluster, (cl+1)*sizeof(void*));
|
idx->cluster = av_realloc_f(idx->cluster, sizeof(void*), cl+1);
|
||||||
if (!idx->cluster)
|
if (!idx->cluster)
|
||||||
return -1;
|
return -1;
|
||||||
idx->cluster[cl] = av_malloc(AVI_INDEX_CLUSTER_SIZE*sizeof(AVIIentry));
|
idx->cluster[cl] = av_malloc(AVI_INDEX_CLUSTER_SIZE*sizeof(AVIIentry));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user