]> granicus.if.org Git - jq/commitdiff
Add missing jv_copy when printing with -ar
authorWilliam Langford <wlangfor@gmail.com>
Tue, 20 Nov 2018 14:58:25 +0000 (09:58 -0500)
committerWilliam Langford <wlangfor@gmail.com>
Tue, 20 Nov 2018 14:58:25 +0000 (09:58 -0500)
src/main.c

index b154689efd5c5f41bf9f8ec46b95242e9799733e..61ae43f94b3df9ae6a51b31a8dcf970b18778461 100644 (file)
@@ -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);
       }