From: YukiKita Date: Wed, 17 May 2017 00:05:29 +0000 (+0900) Subject: Fixed json_print_value so that ending double quote of JSON string value will not... X-Git-Tag: fio-2.21~44^2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=002e57665ed7eebe920de6f1729ef2e403b7c6cc Fixed json_print_value so that ending double quote of JSON string value will not disappear --- diff --git a/json.c b/json.c index e0227ec6..2160d296 100644 --- a/json.c +++ b/json.c @@ -340,9 +340,13 @@ static void json_print_array(struct json_array *array, struct buf_output *out) static void json_print_value(struct json_value *value, struct buf_output *out) { switch (value->type) { - case JSON_TYPE_STRING: - log_buf(out, "\"%s\"", value->string); - break; + case JSON_TYPE_STRING: { + const char delimiter = '"'; + buf_output_add(out, &delimiter, sizeof(delimiter)); + buf_output_add(out, value->string, strlen(value->string)); + buf_output_add(out, &delimiter, sizeof(delimiter)); + break; + } case JSON_TYPE_INTEGER: log_buf(out, "%lld", value->integer_number); break;