Unlink tmp files early in case the tiling doesn't run to completion

This commit is contained in:
Eric Fischer 2014-09-18 14:04:52 -07:00
parent b5d28af005
commit 9fd4da4f7d

View File

@ -407,6 +407,9 @@ void read_json(FILE *f) {
FILE *indexfile = fopen(indexname, "wb");
long long fpos = 0;
unlink(metaname);
unlink(indexname);
unsigned file_bbox[] = { UINT_MAX, UINT_MAX, 0, 0 };
while (1) {
@ -561,9 +564,6 @@ next_feature:
close(indexfd);
close(metafd);
unlink(metaname);
unlink(indexname);
}
int main(int argc, char **argv) {