bug 392117 pass lowercase strings to LowerCaseEqualsLiteral r+sr=sicking

This commit is contained in:
cbiesinger@gmx.at 2007-08-20 10:27:47 -07:00
Родитель c8c9d5dba8
Коммит 250f4f6593
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -944,8 +944,8 @@ nsXMLHttpRequest::GetResponseHeader(const nsACString& header,
// Check for dangerous headers
if (mState & XML_HTTP_REQUEST_USE_XSITE_AC) {
const char *kCrossOriginSafeHeaders[] = {
"Cache-Control", "Content-Language", "Content-Type", "Expires",
"Last-Modified", "Pragma"
"cache-control", "content-language", "content-type", "expires",
"last-modified", "pragma"
};
PRBool safeHeader = PR_FALSE;
PRUint32 i;