зеркало из https://github.com/mozilla/gecko-dev.git
fixes bug 230351 "NTLM base64 decoder should tolerate extra '=' padding" r=cneberg
This commit is contained in:
Родитель
24286983eb
Коммит
c6cb29d879
|
@ -230,6 +230,10 @@ nsHttpNegotiateAuth::GenerateCredentials(nsIHttpChannel *httpChannel,
|
|||
if (!inToken)
|
||||
return (NS_ERROR_OUT_OF_MEMORY);
|
||||
|
||||
// strip off any padding (see bug 230351)
|
||||
while (challenge[len - 1] == '=')
|
||||
len--;
|
||||
|
||||
//
|
||||
// Decode the response that followed the "Negotiate" token
|
||||
//
|
||||
|
|
Загрузка…
Ссылка в новой задаче