| Index: Source/core/html/MediaFragmentURIParser.cpp
|
| diff --git a/Source/core/html/MediaFragmentURIParser.cpp b/Source/core/html/MediaFragmentURIParser.cpp
|
| index 3289ec0594f155f68eee77e268ed1faeafb56cdf..c37758163289794fbdac0936803c1399a3958d66 100644
|
| --- a/Source/core/html/MediaFragmentURIParser.cpp
|
| +++ b/Source/core/html/MediaFragmentURIParser.cpp
|
| @@ -112,11 +112,11 @@ void MediaFragmentURIParser::parseFragments()
|
| // percent-encoded octets are decoded.
|
| size_t parameterStart = offset;
|
| size_t parameterEnd = fragmentString.find('&', offset);
|
| - if (parameterEnd == notFound)
|
| + if (parameterEnd == kNotFound)
|
| parameterEnd = end;
|
|
|
| size_t equalOffset = fragmentString.find('=', offset);
|
| - if (equalOffset == notFound || equalOffset > parameterEnd) {
|
| + if (equalOffset == kNotFound || equalOffset > parameterEnd) {
|
| offset = parameterEnd + 1;
|
| continue;
|
| }
|
|
|