net/ice: fix dereferenced null pointer
authorSimei Su <simei.su@intel.com>
Mon, 11 Oct 2021 08:25:25 +0000 (16:25 +0800)
committerQi Zhang <qi.z.zhang@intel.com>
Thu, 14 Oct 2021 06:26:43 +0000 (08:26 +0200)
This patch fixes coverity issue by avoiding use of null pointer
in taking false branch.

Coverity issue: 373360
Fixes: 437dbd2fd428 ("net/ice: support 1PPS")

Signed-off-by: Simei Su <simei.su@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
drivers/net/ice/ice_ethdev.c

index 65e43a1..170a127 100644 (file)
@@ -1854,18 +1854,18 @@ parse_pin_set(const char *input, int pps_type, struct ice_devargs *devargs)
                idx = strtoul(str, &end, 10);
                if (end == NULL || idx >= ICE_MAX_PIN_NUM)
                        return -1;
+               while (isblank(*end))
+                       end++;
+               if (*end != ']')
+                       return -1;
 
                devargs->pin_idx = idx;
                devargs->pps_out_ena = 1;
-       }
-
-       while (isblank(*end))
-               end++;
 
-       if (*end != ']')
-               return -1;
+               return 0;
+       }
 
-       return 0;
+       return -1;
 }
 
 static int