summaryrefslogtreecommitdiff
path: root/json.c
diff options
context:
space:
mode:
Diffstat (limited to 'json.c')
-rw-r--r--json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/json.c b/json.c
index 849c33df..e4f2d60f 100644
--- a/json.c
+++ b/json.c
@@ -442,7 +442,7 @@ static int json_internal_read_object(const char *cp,
&& parent->element_type != t_structobject
&& offset > 0)
return JSON_ERR_NOPARSTR;
- (void)strncpy(lptr, valbuf, cursor->len);
+ (void)strlcpy(lptr, valbuf, cursor->len);
break;
case t_boolean:
*((bool *) lptr) = (strcmp(valbuf, "true") == 0);