You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
staging: nvec: potential NULL dereference on error path
We assume nvec->rx can be NULL earlier so I have added a check here as well. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
cb4855b49d
commit
6330f9cf34
@@ -681,7 +681,8 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
|
||||
dev_err(nvec->dev,
|
||||
"RX buffer overflow on %p: "
|
||||
"Trying to write byte %u of %u\n",
|
||||
nvec->rx, nvec->rx->pos, NVEC_MSG_SIZE);
|
||||
nvec->rx, nvec->rx ? nvec->rx->pos : 0,
|
||||
NVEC_MSG_SIZE);
|
||||
break;
|
||||
default:
|
||||
nvec->state = 0;
|
||||
|
||||
Reference in New Issue
Block a user