Commit eb725235 authored by Michael Niedermayer's avatar Michael Niedermayer

avdevice/v4l2: use av_freep() to avoid leaving stale pointers in memory

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 30d2ac4b
......@@ -356,7 +356,7 @@ static int mmap_init(AVFormatContext *ctx)
s->buf_len = av_malloc_array(s->buffers, sizeof(unsigned int));
if (!s->buf_len) {
av_log(ctx, AV_LOG_ERROR, "Cannot allocate buffer sizes\n");
av_free(s->buf_start);
av_freep(&s->buf_start);
return AVERROR(ENOMEM);
}
......@@ -634,8 +634,8 @@ static void mmap_close(struct video_data *s)
for (i = 0; i < s->buffers; i++) {
v4l2_munmap(s->buf_start[i], s->buf_len[i]);
}
av_free(s->buf_start);
av_free(s->buf_len);
av_freep(&s->buf_start);
av_freep(&s->buf_len);
}
static int v4l2_set_parameters(AVFormatContext *ctx)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment