mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +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:
parent
3caf26f324
commit
e8c8068dec
2 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue