mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
digest: fix memory leak in auth_create_digest_http_message()
Signed-off-by: huanghuihui0904 <625173@qq.com> Closes #20862
This commit is contained in:
parent
4a15bc13f4
commit
cbb5544c45
@ -809,8 +809,10 @@ static CURLcode auth_create_digest_http_message(
|
||||
char *hashthis2;
|
||||
|
||||
result = hash(hashbuf, (const unsigned char *)"", 0);
|
||||
if(result)
|
||||
if(result) {
|
||||
curlx_free(hashthis);
|
||||
goto oom;
|
||||
}
|
||||
convert_to_ascii(hashbuf, (unsigned char *)hashed);
|
||||
|
||||
hashthis2 = curl_maprintf("%s:%s", hashthis, hashed);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user