aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Kinsella <mdr@ashroe.eu>2020-04-07 16:35:22 +0100
committerAndrew Yourtchenko <ayourtch@gmail.com>2020-08-13 17:20:47 +0000
commit22fb6e6ef8fc81227b3e40cb074f745a3e7361dd (patch)
treee1739ebed72311ade9b8543739dc0914b77c320b
parent25e24e522db394f320f12033f572f28442f680de (diff)
vat: fix vat strncpy stringop-overflow
Fix GCC 9.0 barf on vat strncpy. Type: fix Signed-off-by: Ray Kinsella <mdr@ashroe.eu> Change-Id: I5e41225d6ac9673a9d953046720df55e7b69c479 Signed-off-by: Dave Barach <dave@barachs.net> (cherry picked from commit b1bb513792fecd735effebbd07d867ea93adc9f6)
-rw-r--r--src/vat/json_format.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vat/json_format.h b/src/vat/json_format.h
index d2fab9020b3..260c32ede25 100644
--- a/src/vat/json_format.h
+++ b/src/vat/json_format.h
@@ -95,8 +95,7 @@ vat_json_set_string_copy (vat_json_node_t * json, const u8 * str)
u8 *ns = NULL;
int len = strlen ((const char *) str);
vec_validate (ns, len);
- strncpy ((char *) ns, (const char *) str, len + 1);
- vec_add1 (ns, '\0');
+ memcpy ((char *) ns, (const char *) str, len + 1);
vat_json_set_string (json, ns);
}