Message ID | 20230216104113.46-1-alsp705@gmail.com |
---|---|
State | New |
Headers | show |
Series | NULL check in twl_scsiop_execute_scsi() | expand |
diff --git a/drivers/scsi/3w-sas.c b/drivers/scsi/3w-sas.c index 3ebe661..674c130 100644 --- a/drivers/scsi/3w-sas.c +++ b/drivers/scsi/3w-sas.c @@ -333,7 +333,7 @@ static int twl_scsiop_execute_scsi(TW_Device_Extension *tw_dev, int request_id, if (!sglistarg) { /* Map sglist from scsi layer to cmd packet */ - if (scsi_sg_count(srb)) { + if (srb && scsi_sg_count(srb)) { sg_count = scsi_dma_map(srb); if (sg_count <= 0) goto out;