1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Fix #111: exit(1) when inputs are not valid JSON

This commit is contained in:
Nicolas Williams
2013-05-04 17:03:01 -05:00
parent 74eb914aba
commit 65deaaacf5

7
main.c
View File

@ -143,6 +143,7 @@ static int read_more(char* buf, size_t size) {
}
int main(int argc, char* argv[]) {
int ret = 0;
if (argc) progname = argv[0];
if (argc > 1 && !strcmp(argv[1], "--run-tests")) {
@ -276,6 +277,7 @@ int main(int argc, char* argv[]) {
jv msg = jv_invalid_get_msg(value);
fprintf(stderr, "parse error: %s\n", jv_string_value(msg));
jv_free(msg);
ret = 1;
break;
} else {
jv_free(value);
@ -283,11 +285,14 @@ int main(int argc, char* argv[]) {
}
}
jv_parser_free(&parser);
if (ret != 0)
goto out;
if (options & SLURP) {
process(slurped, jq_flags);
}
}
out:
jv_mem_free(input_filenames);
bytecode_free(bc);
return 0;
return ret;
}