Bail if the tile size is larger than the uploader will accept

This commit is contained in:
Eric Fischer 2014-09-23 12:17:18 -07:00
parent 3170616f6d
commit dd8f43a697

View File

@ -205,7 +205,11 @@ void write_tile(struct index *start, struct index *end, char *metabase, unsigned
tile.SerializeToString(&s);
compress(s, compressed);
//std::cout << compressed;
if (compressed.size() > 500000) {
fprintf(stderr, "tile %d/%u/%u size is %lld, >500000\n", z, tx, ty, (long long) compressed.size());
exit(EXIT_FAILURE);
}
const char *prefix = "tiles";
char path[strlen(prefix) + 200];