mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avdevice/v4l2: Use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
aca48725af
commit
124c94a1c8
@ -351,12 +351,12 @@ static int mmap_init(AVFormatContext *ctx)
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
s->buffers = req.count;
|
||||
s->buf_start = av_malloc(sizeof(void *) * s->buffers);
|
||||
s->buf_start = av_malloc_array(s->buffers, sizeof(void *));
|
||||
if (s->buf_start == NULL) {
|
||||
av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer pointers\n");
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
s->buf_len = av_malloc(sizeof(unsigned int) * s->buffers);
|
||||
s->buf_len = av_malloc_array(s->buffers, sizeof(unsigned int));
|
||||
if (s->buf_len == NULL) {
|
||||
av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer sizes\n");
|
||||
av_free(s->buf_start);
|
||||
|
Loading…
Reference in New Issue
Block a user