summaryrefslogtreecommitdiffstats
path: root/include/utils/String8.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/utils/String8.h')
-rw-r--r--include/utils/String8.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/utils/String8.h b/include/utils/String8.h
index cef8eca..a129222 100644
--- a/include/utils/String8.h
+++ b/include/utils/String8.h
@@ -418,7 +418,9 @@ inline bool String8::operator<=(const String8& other) const
inline bool String8::operator==(const String8& other) const
{
- return strcmp(mString, other.mString) == 0;
+ return (SharedBuffer::sizeFromData(mString) ==
+ SharedBuffer::sizeFromData(other.mString)) &&
+ strcmp(mString, other.mString) == 0;
}
inline bool String8::operator!=(const String8& other) const