talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit d5e5f0ce0c82ee9772235204e7c93415e234e254
parent a325902fc08410c8566f99b2ad6f89749a85675d
Author: Jonathan Boeing <jonathan@claws-mail.org>
Date:   Fri, 24 Sep 2021 04:57:54 -0700

Fix memory leak

Diffstat:
Msrc/plugins/pgpcore/sgpgme.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/plugins/pgpcore/sgpgme.c b/src/plugins/pgpcore/sgpgme.c @@ -401,8 +401,7 @@ gchar *sgpgme_sigstat_info_full(gpgme_ctx_t ctx, gpgme_verify_result_t status) key->uids = key->uids ? key->uids->next : NULL; while (key->uids != NULL) { g_string_append_printf(siginfo, - g_strconcat(" ", - _("uid \"%s\" (Validity: %s)\n"), NULL), + _(" uid \"%s\" (Validity: %s)\n"), key->uids->uid, key->uids->revoked==TRUE?_("Revoked"):get_validity_str(key->uids->validity)); j++;