diff options
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); } |