mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 917593 - Don't assert for zero-length strings. r=Waldo
This commit is contained in:
parent
bef2a582e7
commit
51532e72a4
@ -238,9 +238,9 @@ class EndianUtils
|
||||
{
|
||||
DebugOnly<const uint8_t*> byteDestPtr = static_cast<const uint8_t*>(dest);
|
||||
DebugOnly<const uint8_t*> byteSrcPtr = static_cast<const uint8_t*>(src);
|
||||
MOZ_ASSERT((byteDestPtr < byteSrcPtr &&
|
||||
MOZ_ASSERT((byteDestPtr <= byteSrcPtr &&
|
||||
byteDestPtr + count <= byteSrcPtr) ||
|
||||
(byteSrcPtr < byteDestPtr &&
|
||||
(byteSrcPtr <= byteDestPtr &&
|
||||
byteSrcPtr + count <= byteDestPtr));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user