diff options
author | default <nobody@localhost> | 2024-01-04 16:27:07 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-01-04 16:27:07 +0100 |
commit | 5e2f4e9902c5ae15bd55da99a28b1de61a6f4293 (patch) | |
tree | e3c551e5b7b30f0347ed24dec39757f7f9a48edf /data.c | |
parent | 2218889b43f0393c1d41be62669d3be8389a3779 (diff) |
dequeue() unlinks the file, even if it's been unable to parse it.
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2399,8 +2399,7 @@ xs_dict *dequeue(const char *fn) { xs_dict *obj = queue_get(fn); - if (obj != NULL) - unlink(fn); + unlink(fn); return obj; } |