зеркало из https://github.com/mozilla/gecko-dev.git
bug 81451, bugzilla cookies not getting set, r=valeski, sr=darin, a=blizzard
This commit is contained in:
Родитель
99ce2721be
Коммит
2492be606a
|
@ -1956,7 +1956,12 @@ nsHttpChannel::SetResponseHeader(const char *header, const char *value)
|
|||
nsHttpAtom atom = nsHttp::ResolveAtom(header);
|
||||
if (!atom)
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
return mResponseHead->SetHeader(atom, value);
|
||||
|
||||
nsresult rv = mResponseHead->SetHeader(atom, value);
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
rv = nsHttpHandler::get()->OnExamineResponse(this);
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
|
|
Загрузка…
Ссылка в новой задаче