diff options
Diffstat (limited to 'agent/call-pinentry.c')
-rw-r--r-- | agent/call-pinentry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/agent/call-pinentry.c b/agent/call-pinentry.c index 6ae31030d..ea18d43dd 100644 --- a/agent/call-pinentry.c +++ b/agent/call-pinentry.c @@ -319,7 +319,7 @@ start_pinentry (ctrl_t ctrl) return unlock_pinentry (out_of_core ()); rc = assuan_transact (entry_ctx, optstr, NULL, NULL, NULL, NULL, NULL, NULL); - free (optstr); + xfree (optstr); if (rc) return unlock_pinentry (rc); } @@ -373,7 +373,7 @@ start_pinentry (ctrl_t ctrl) { assuan_transact (entry_ctx, optstr, NULL, NULL, NULL, NULL, NULL, NULL); - free (optstr); + xfree (optstr); } } |