summaryrefslogtreecommitdiff
path: root/netwerk
diff options
context:
space:
mode:
Diffstat (limited to 'netwerk')
-rw-r--r--netwerk/protocol/http/nsHttpChannel.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/netwerk/protocol/http/nsHttpChannel.cpp b/netwerk/protocol/http/nsHttpChannel.cpp
index 7da796ed5..c75d41198 100644
--- a/netwerk/protocol/http/nsHttpChannel.cpp
+++ b/netwerk/protocol/http/nsHttpChannel.cpp
@@ -163,6 +163,13 @@ WillRedirect(const nsHttpResponseHead * response)
response->PeekHeader(nsHttp::Location);
}
+// This is required to bypass XCTO: nosniff check
+bool
+WillRedirectOrNotModified(const nsHttpResponseHead * response)
+{
+ return WillRedirect(response) || response->Status() == 304;
+}
+
} // unnamed namespace
nsresult
@@ -1315,8 +1322,9 @@ nsHttpChannel::ProcessAltService()
nsresult
ProcessXCTO(nsHttpResponseHead* aResponseHead, nsILoadInfo* aLoadInfo)
{
- if (!aResponseHead || !aLoadInfo) {
+ if (!aResponseHead || WillRedirectOrNotModified(aResponseHead) || !aLoadInfo) {
// if there is no response head or no loadInfo, then there is nothing to do
+ // we also skip the check in case of 30x response
return NS_OK;
}