| Index: third_party/WebKit/Source/wtf/text/ASCIIFastPath.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/ASCIIFastPath.h b/third_party/WebKit/Source/wtf/text/ASCIIFastPath.h
|
| index b167a322152ad1d9d313d89c78c5377b19759674..2f3433f5e4925fd5ab3fba4acbd22676efa25750 100644
|
| --- a/third_party/WebKit/Source/wtf/text/ASCIIFastPath.h
|
| +++ b/third_party/WebKit/Source/wtf/text/ASCIIFastPath.h
|
| @@ -78,6 +78,7 @@ inline bool isAllASCII(MachineWord word) {
|
| template <typename CharacterType>
|
| inline bool charactersAreAllASCII(const CharacterType* characters,
|
| size_t length) {
|
| + DCHECK_GT(length, 0u);
|
| MachineWord allCharBits = 0;
|
| const CharacterType* end = characters + length;
|
|
|
|
|