mirror of
https://github.com/curl/curl.git
synced 2026-05-05 13:47:56 +03: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
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue