[media] lirc: fix null dereference for tx-only devices
tx-only RC devices do not have a receive buffer. Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
f348b4d323
commit
7cebf2ee8b
@ -468,7 +468,7 @@ int lirc_dev_fop_open(struct inode *inode, struct file *file)
|
||||
if (retval) {
|
||||
module_put(cdev->owner);
|
||||
ir->open--;
|
||||
} else {
|
||||
} else if (ir->buf) {
|
||||
lirc_buffer_clear(ir->buf);
|
||||
}
|
||||
if (ir->task)
|
||||
|
Loading…
Reference in New Issue
Block a user