http: acknowledge OOM errors from Curl_input_ntlm

Closes #19781
This commit is contained in:
Daniel Stenberg 2025-12-01 11:00:47 +01:00
parent 012fa2b91b
commit c6c4a99300
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -946,6 +946,8 @@ static CURLcode auth_ntlm(struct Curl_easy *data,
if(!result)
data->state.authproblem = FALSE;
else {
if(result == CURLE_OUT_OF_MEMORY)
return result;
infof(data, "NTLM authentication problem, ignoring.");
data->state.authproblem = TRUE;
}