mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-04-04 05:09:03 +00:00
Stratum: fixed an unaligned memory read
This commit is contained in:
parent
ab6b08404a
commit
a003486b4a
1 changed files with 1 additions and 1 deletions
|
@ -1168,7 +1168,7 @@ bool StratumServer::StratumClient::on_read(char* data, uint32_t size)
|
|||
for (char *e = line_start + m_stratumReadBufBytes, *c = e - size; c < e; ++c) {
|
||||
if (*c == '\n') {
|
||||
// Check if the line starts with "GET " (an HTTP request)
|
||||
if ((c - line_start >= 4) && (*reinterpret_cast<uint32_t*>(line_start) == 0x20544547U)) {
|
||||
if ((c - line_start >= 4) && (read_unaligned(reinterpret_cast<uint32_t*>(line_start)) == 0x20544547U)) {
|
||||
LOGINFO(5, "client " << log::Gray() << static_cast<const char*>(m_addrString) << log::NoColor() << " sent an HTTP request");
|
||||
send_http_response();
|
||||
close();
|
||||
|
|
Loading…
Reference in a new issue