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:
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;
|
||||
|
|
Loading…
Reference in New Issue