mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 22:58:29 +00:00
[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
1 changed files with 1 additions and 1 deletions
|
@ -468,7 +468,7 @@ int lirc_dev_fop_open(struct inode *inode, struct file *file)
|
||||||
if (retval) {
|
if (retval) {
|
||||||
module_put(cdev->owner);
|
module_put(cdev->owner);
|
||||||
ir->open--;
|
ir->open--;
|
||||||
} else {
|
} else if (ir->buf) {
|
||||||
lirc_buffer_clear(ir->buf);
|
lirc_buffer_clear(ir->buf);
|
||||||
}
|
}
|
||||||
if (ir->task)
|
if (ir->task)
|
||||||
|
|
Loading…
Add table
Reference in a new issue