| Index: third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp b/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
|
| index 377d5606472d616432c50e192cf501cfb93e1031..6189b29c6aa09767688cbe3741c69eef4b5f21d6 100644
|
| --- a/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
|
| @@ -41,7 +41,7 @@ static const char crlfLineEnding[] = "\r\n";
|
| static size_t lengthOfLineEndingAtIndex(const char* input,
|
| size_t inputLength,
|
| size_t index) {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(index < inputLength);
|
| + SECURITY_DCHECK(index < inputLength);
|
| if (input[index] == '\n')
|
| return 1; // Single LF.
|
|
|
|
|