From: Bruce Richardson Date: Mon, 8 Apr 2019 09:46:37 +0000 (+0100) Subject: examples/vhost_scsi: fix null-check for parameter X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=6fd5b5734faf2f902aebf57e966e5adb0499a1ff;p=dpdk.git examples/vhost_scsi: fix null-check for parameter Coverity points out that there is a check in the main thread loop for the ctrlr->bdev being NULL, but by that stage the pointer has already been dereferenced. Therefore, for safety, before we enter the loop do an initial check on the parameter structure. Coverity issue: 158657 Fixes: db75c7af19bb ("examples/vhost_scsi: introduce a new sample app") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Reviewed-by: Tiwei Bie --- diff --git a/examples/vhost_scsi/vhost_scsi.c b/examples/vhost_scsi/vhost_scsi.c index 2908ff68b7..513af0cca4 100644 --- a/examples/vhost_scsi/vhost_scsi.c +++ b/examples/vhost_scsi/vhost_scsi.c @@ -285,6 +285,12 @@ ctrlr_worker(void *arg) cpu_set_t cpuset; pthread_t thread; + if (ctrlr == NULL || ctrlr->bdev == NULL) { + fprintf(stderr, "%s: Error, invalid argument passed to worker thread\n", + __func__); + exit(0); + } + thread = pthread_self(); CPU_ZERO(&cpuset); CPU_SET(0, &cpuset);