diff options
author | Andreas Schultz <andreas.schultz@travelping.com> | 2020-04-07 13:40:36 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-04-17 19:09:28 +0000 |
commit | 63551351b75d1363b57ed1810b0d7065ca5cd600 (patch) | |
tree | 1280c6ef23a12848e86b8a35c5dd66becb387762 /src | |
parent | e57df7c6771906ce9e1b373028755eabc4764c0f (diff) |
vat: fix static analysis warning
replace hand crafted version with existing vector function
Type: fix
Signed-off-by: Andreas Schultz <andreas.schultz@travelping.com>
Change-Id: I94834852469ed316c7bdbd48bb7f479648b2c8e5
Diffstat (limited to 'src')
-rw-r--r-- | src/vat/json_format.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vat/json_format.h b/src/vat/json_format.h index 260c32ede25..71db79eacf5 100644 --- a/src/vat/json_format.h +++ b/src/vat/json_format.h @@ -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); } |