mirror of
https://github.com/curl/curl.git
synced 2026-06-01 23:04:15 +03:00
krb5: fix memory leak in krb_auth
The FTP command allocated by aprintf() must be freed after usage. Reviewed-by: Daniel Stenberg <daniel@haxx.se>
This commit is contained in:
parent
a9882b90f8
commit
3c5ee47fc2
1 changed files with 1 additions and 0 deletions
|
|
@ -265,6 +265,7 @@ krb5_auth(void *app_data, struct connectdata *conn)
|
|||
result = CURLE_OUT_OF_MEMORY;
|
||||
|
||||
free(p);
|
||||
free(cmd);
|
||||
|
||||
if(result) {
|
||||
ret = -2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue