rpcrt4: Don't try to decode the authorization value in the first leg.
This commit is contained in:
parent
6f2c4bac58
commit
057c98323e
|
@ -2653,7 +2653,7 @@ static RPC_STATUS do_authorization(HINTERNET request, SEC_WCHAR *servername,
|
|||
in_desc.pBuffers = ∈
|
||||
|
||||
p = auth_value + scheme_len;
|
||||
if (*p == ' ')
|
||||
if (!first && *p == ' ')
|
||||
{
|
||||
int len = strlenW(++p);
|
||||
in.cbBuffer = decode_base64(p, len, NULL);
|
||||
|
|
Loading…
Reference in New Issue