diff options
author | NIIBE Yutaka <[email protected]> | 2025-05-28 06:50:10 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2025-05-28 06:50:10 +0000 |
commit | 29bc14f56f6430294f225b6744012ab1f5df62e6 (patch) | |
tree | 295c3151a40e1303e499d68112f18efe9f2be195 /tools/gpgconf-comp.c | |
parent | agent: Allow building under Cygwin. (diff) | |
download | gnupg-29bc14f56f6430294f225b6744012ab1f5df62e6.tar.gz gnupg-29bc14f56f6430294f225b6744012ab1f5df62e6.zip |
gpgsm,tests,tools: Fix memory leaks.
* sm/minip12.c (p12_parse): Fix creating new TLV with old TLV.
* sm/t-minip12.c (one_file): Release RESULT.
* tests/gpgscm/ffi.c (do_process_wait): Call gpgrt_process_release.
* tools/gpgconf-comp.c (retrieve_options_from_program): Release PARGS.
* tools/gpgtar-extract.c (gpgtar_extract): Release PROC on leave.
* tools/gpgtar-list.c (gpgtar_list): Release PROC on leave.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'tools/gpgconf-comp.c')
-rw-r--r-- | tools/gpgconf-comp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index 433bf712c..862ebd16d 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -2162,6 +2162,7 @@ retrieve_options_from_program (gc_component_id_t component, int only_installed) } } + gpgrt_argparse (NULL, &pargs, NULL); /* Release internal state. */ xfree (line); xfree (twopartconfig_name); } |