raw/dpaa2_cmdif: fix warnings with GCC 9
authorBruce Richardson <bruce.richardson@intel.com>
Wed, 1 May 2019 19:50:14 +0000 (20:50 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 2 May 2019 12:17:37 +0000 (14:17 +0200)
GCC9 gives warnings if the parameter passed to printf for "%s" could be
NULL, so we need to add checks in some cases to ensure that is not the
case.

Fixes: 3298fa4853b8 ("raw/dpaa2_cmdif: introduce DPAA2 command interface driver")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/raw/dpaa2_cmdif/dpaa2_cmdif.c

index 7d311b2..da3c7d7 100644 (file)
@@ -270,6 +270,8 @@ dpaa2_cmdif_remove(struct rte_vdev_device *vdev)
        int ret;
 
        name = rte_vdev_device_name(vdev);
+       if (name == NULL)
+               return -1;
 
        DPAA2_CMDIF_INFO("Closing %s on NUMA node %d", name, rte_socket_id());