Remove temporary files that were accidentally left in place

This commit is contained in:
Eric Fischer 2016-03-28 14:00:01 -07:00
parent 9f2e221338
commit b47653e2e6

View File

@ -1491,6 +1491,7 @@ int read_json(int argc, char **argv, char *fname, const char *layername, int max
perror(geomname);
exit(EXIT_FAILURE);
}
unlink(geomname);
int geomfd2;
/* Sort the index by geometry */
@ -1625,6 +1626,7 @@ int read_json(int argc, char **argv, char *fname, const char *layername, int max
perror(geomname);
exit(EXIT_FAILURE);
}
unlink(geomname);
for (i = 0; i < CPUS; i++) {
if (reader[i].geomst.st_size > 0) {