fixes #907, segfault when ampersands where missing

This commit is contained in:
Dennis Luxen 2014-02-10 11:43:26 +01:00
parent f14fac3f7d
commit 9378af1057

View File

@ -45,7 +45,9 @@ struct RouteParameters {
geometry(true),
compression(true),
deprecatedAPI(false),
checkSum(-1) {}
checkSum(-1)
{ }
short zoomLevel;
bool printInstructions;
bool alternateRoute;
@ -95,8 +97,7 @@ struct RouteParameters {
}
void addHint(const std::string & s) {
hints.resize(coordinates.size());
hints.back() = s;
hints.push_back(s);
}
void setLanguage(const std::string & s) {