xdma: avoid NULL deref in error case
Reported by: Dr Silvio Cesare of InfoSect MFC after: 3 days Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
7e0025dea2
commit
d676fedfbc
@ -186,8 +186,7 @@ xchan_bufs_alloc(xdma_channel_t *xchan)
|
|||||||
xdma = xchan->xdma;
|
xdma = xchan->xdma;
|
||||||
|
|
||||||
if (xdma == NULL) {
|
if (xdma == NULL) {
|
||||||
device_printf(xdma->dev,
|
printf("%s: Channel was not allocated properly.\n", __func__);
|
||||||
"%s: Channel was not allocated properly.\n", __func__);
|
|
||||||
return (-1);
|
return (-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user