sprintf -> snprintf in bucket code.

This commit is contained in:
James Turner 2013-09-30 12:07:57 +01:00
parent 42b0b9306b
commit f205e918d9

View File

@ -212,7 +212,7 @@ std::string SGBucket::gen_base_path() const {
main_lat *= -1;
}
sprintf(raw_path, "%c%03d%c%02d/%c%03d%c%02d",
snprintf(raw_path, 256, "%c%03d%c%02d/%c%03d%c%02d",
hem, top_lon, pole, top_lat,
hem, main_lon, pole, main_lat);