Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
eb725235b0
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavdevice/v4l2.c

+ 3
- 3
libavdevice/v4l2.c View File

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


Loading…
Cancel
Save