Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 13d0fd57c5 | |||
| 7f6a92a6e6 |
+2
-8
@@ -1,15 +1,9 @@
|
|||||||
# 5.2.2
|
|
||||||
Changes from 5.2.1
|
|
||||||
- Bugfixes:
|
|
||||||
- Buffer overrun in tile plugin response handling
|
|
||||||
|
|
||||||
# 5.2.1
|
# 5.2.1
|
||||||
Changes from 5.2.0
|
Changes from 5.2.0
|
||||||
- Bugfixes:
|
Bugfixes:
|
||||||
- Removed debug statement that was spamming the console
|
- Removed debug statement that was spamming the console
|
||||||
|
|
||||||
# 5.2.0
|
# 5.2.0
|
||||||
Changes from 5.2.0 RC2
|
Changes form 5.2.0 RC2
|
||||||
- Bugfixes:
|
- Bugfixes:
|
||||||
- Fixed crash when loading shared memory caused by invalid OSM IDs segment size.
|
- Fixed crash when loading shared memory caused by invalid OSM IDs segment size.
|
||||||
- Various small instructions handling fixes
|
- Various small instructions handling fixes
|
||||||
|
|||||||
@@ -105,10 +105,11 @@ void RequestHandler::HandleRequest(const http::request ¤t_request, http::r
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
BOOST_ASSERT(result.is<std::string>());
|
BOOST_ASSERT(result.is<std::string>());
|
||||||
current_reply.content.resize(result.get<std::string>().size());
|
current_reply.content.resize(current_reply.content.size() +
|
||||||
|
result.get<std::string>().size());
|
||||||
std::copy(result.get<std::string>().cbegin(),
|
std::copy(result.get<std::string>().cbegin(),
|
||||||
result.get<std::string>().cend(),
|
result.get<std::string>().cend(),
|
||||||
current_reply.content.begin());
|
current_reply.content.end());
|
||||||
|
|
||||||
current_reply.headers.emplace_back("Content-Type", "application/x-protobuf");
|
current_reply.headers.emplace_back("Content-Type", "application/x-protobuf");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user