1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-07 12:56:21 +02:00

tools: Avoid memory leaks.

* tools/gpg-auth.c (ssh_authorized_keys): Free list on error.
* tools/gpgtar-extract.c (gpgtar_extract): Free memory on error.

--

GnuPG-bug-id: 7201
Signed-off-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
Jakub Jelen 2024-07-15 19:55:44 +02:00 committed by NIIBE Yutaka
parent 3caf26f324
commit e8c8068dec
No known key found for this signature in database
GPG Key ID: 640114AF89DE6054
2 changed files with 2 additions and 1 deletions

View File

@ -825,6 +825,7 @@ ssh_authorized_keys (const char *user, struct ssh_key_list **r_ssh_key_list)
{
err = gpg_error (GPG_ERR_LINE_TOO_LONG);
log_error (_("error reading '%s': %s\n"), fname, gpg_strerror (err));
release_ssh_key_list (ssh_key_list);
goto leave;
}

View File

@ -467,7 +467,7 @@ gpgtar_extract (const char *filename, int decrypt)
{
err = gpg_error_from_syserror ();
log_error ("error opening '%s': %s\n", filename, gpg_strerror (err));
return err;
goto leave;
}
if (stream == es_stdin)
es_set_binary (es_stdin);