vat: fix static analysis warning 92/28392/1
authorAndreas Schultz <andreas.schultz@travelping.com>
Tue, 7 Apr 2020 11:40:36 +0000 (13:40 +0200)
committerAndrew Yourtchenko <ayourtch@gmail.com>
Thu, 13 Aug 2020 17:20:47 +0000 (17:20 +0000)
replace hand crafted version with existing vector function

Type: fix

Signed-off-by: Andreas Schultz <andreas.schultz@travelping.com>
Change-Id: I94834852469ed316c7bdbd48bb7f479648b2c8e5
(cherry picked from commit 63551351b75d1363b57ed1810b0d7065ca5cd600)

src/vat/json_format.h

index 260c32e..71db79e 100644 (file)
@@ -94,8 +94,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);
-  memcpy ((char *) ns, (const char *) str, len + 1);
+  vec_validate_init_c_string (ns, str, len);
   vat_json_set_string (json, ns);
 }