One more review comment
authorJiri Prokes <jirix.x.prokes@intel.com>
Wed, 25 Oct 2017 16:59:36 +0000 (09:59 -0700)
committerJiri Prokes <jirix.x.prokes@intel.com>
Wed, 25 Oct 2017 16:59:36 +0000 (09:59 -0700)
Signed-off-by: Jiri Prokes <jirix.x.prokes@intel.com>
src/utils_dpdk.c

index b605646..fbdcaf8 100644 (file)
@@ -734,7 +734,7 @@ static void dpdk_helper_check_pipe(dpdk_helper_ctx_t *phc) {
     if (nbytes <= 0)
       break;
     buf[nbytes] = '\0';
-    sstrncpy(out, buf, (nbytes + 1));
+    sstrncpy(out, buf, sizeof(out));
     DEBUG("%s: helper process:\n%s", phc->shm_name, out);
   }
 }