| Index: Source/core/fetch/Resource.cpp
|
| diff --git a/Source/core/fetch/Resource.cpp b/Source/core/fetch/Resource.cpp
|
| index 35dd33b92886bc467dbc704e7e996b0c98d1ff2e..ee2b9ed1de473da005e5e7a932e69fc6f8627dd5 100644
|
| --- a/Source/core/fetch/Resource.cpp
|
| +++ b/Source/core/fetch/Resource.cpp
|
| @@ -322,8 +322,8 @@ bool Resource::passesAccessControlCheck(SecurityOrigin* securityOrigin, String&
|
|
|
| bool Resource::isEligibleForIntegrityCheck(SecurityOrigin* securityOrigin) const
|
| {
|
| - String errorDescription;
|
| - return securityOrigin->canRequest(resourceRequest().url()) || passesAccessControlCheck(securityOrigin, errorDescription);
|
| + String ignoredErrorDescription;
|
| + return securityOrigin->canRequest(resourceRequest().url()) || passesAccessControlCheck(securityOrigin, ignoredErrorDescription);
|
| }
|
|
|
| static double currentAge(const ResourceResponse& response, double responseTimestamp)
|
|
|