mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-31 18:39:10 +00:00
(svn r11290) -Fix: obiwan in the assertion that checked for overflows when writing a packet, causing still correctly sized packets to cause assertions.
This commit is contained in:
@@ -133,7 +133,8 @@ void Packet::Send_uint64(uint64 data)
|
|||||||
void Packet::Send_string(const char* data)
|
void Packet::Send_string(const char* data)
|
||||||
{
|
{
|
||||||
assert(data != NULL);
|
assert(data != NULL);
|
||||||
assert(this->size < sizeof(this->buffer) - strlen(data) - 1);
|
/* The <= *is* valid due to the fact that we are comparing sizes and not the index. */
|
||||||
|
assert(this->size + strlen(data) + 1 <= sizeof(this->buffer));
|
||||||
while ((this->buffer[this->size++] = *data++) != '\0') {}
|
while ((this->buffer[this->size++] = *data++) != '\0') {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user