Commit 123f8ef6 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (6263): Fix buffer release code

Release code should happen before the cleaning of map variable.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent e78dcf55
......@@ -84,9 +84,11 @@ videobuf_vm_close(struct vm_area_struct *vma)
if (mem->map != map)
continue;
q->ops->buf_release(q,q->bufs[i]);
mem->map = NULL;
q->bufs[i]->baddr = 0;
q->ops->buf_release(q,q->bufs[i]);
}
mutex_unlock(&q->lock);
kfree(map);
......
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