We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5240c4b commit eb907a8Copy full SHA for eb907a8
boost/network/protocol/http/client/connection/async_normal.hpp
@@ -56,7 +56,8 @@ struct chunk_encoding_parser {
56
ss << std::hex << range;
57
size_t size;
58
ss >> size;
59
- chunk_size = (chunk_size << (range.size() * 4)) + size;
+ // New digits are appended as LSBs
60
+ chunk_size = (chunk_size << (range.size() * 4)) | size;
61
}
62
63
boost::iterator_range<
0 commit comments