Merge pull request #395 from mapbox/close-featurecollections

Clean up JSON parsing at the end of each FeatureCollection
This commit is contained in:
Eric Fischer 2017-04-12 13:19:19 -07:00 committed by GitHub
commit e75bb4a16a
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
## 1.16.17
* Clean up JSON parsing at the end of each FeatureCollection
to avoid running out of memory
## 1.16.16
* Add tile-join options to include or exclude specific layers

View File

@ -604,6 +604,7 @@ void parse_json(json_pull *jp, const char *reading, volatile long long *layer_se
if (strcmp(type->string, "Feature") != 0) {
if (strcmp(type->string, "FeatureCollection") == 0) {
check_crs(j, reading);
json_free(j);
}
continue;

View File

@ -1 +1 @@
#define VERSION "tippecanoe v1.16.16\n"
#define VERSION "tippecanoe v1.16.17\n"