mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
Test in-place functionality; fix #704
This commit is contained in:
2
main.c
2
main.c
@@ -515,7 +515,7 @@ int main(int argc, char* argv[]) {
|
||||
fprintf(stderr, "Error: %s opening /dev/null\n", strerror(errno));
|
||||
exit(3);
|
||||
}
|
||||
assert(first_file != 0 && !strcmp(first_file, "-"));
|
||||
assert(first_file != 0 && strcmp(first_file, "-") != 0);
|
||||
if (rename(t, first_file) == -1) {
|
||||
fprintf(stderr, "Error: %s renaming temporary file\n", strerror(errno));
|
||||
exit(3);
|
||||
|
Reference in New Issue
Block a user