diff --git a/src/main.c b/src/main.c index b154689efd..61ae43f94b 100644 --- a/src/main.c +++ b/src/main.c @@ -168,7 +168,7 @@ static int process(jq_state *jq, jv value, int flags, int dumpopts) { while (jv_is_valid(result = jq_next(jq))) { if ((options & RAW_OUTPUT) && jv_get_kind(result) == JV_KIND_STRING) { if (options & ASCII_OUTPUT) { - jv_dumpf(result, stdout, JV_PRINT_ASCII); + jv_dumpf(jv_copy(result), stdout, JV_PRINT_ASCII); } else { fwrite(jv_string_value(result), 1, jv_string_length_bytes(jv_copy(result)), stdout); }