aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gpgme/ChangeLog2
-rw-r--r--gpgme/rungpg.c5
2 files changed, 6 insertions, 1 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog
index 248a1d1b..9ca13c91 100644
--- a/gpgme/ChangeLog
+++ b/gpgme/ChangeLog
@@ -1,5 +1,7 @@
2004-03-11 Marcus Brinkmann <[email protected]>
+ * rungpg.c (gpg_cancel): Set GPG->fd_data_map to NULL after
+ releasing it.
* engine-gpgsm.c (gpgsm_cancel): Only call assuan_disconnect if
GPGSM->assuan_ctx is not NULL. Set it to NULL afterwards.
diff --git a/gpgme/rungpg.c b/gpgme/rungpg.c
index 7cb4ae79..fd5e6c12 100644
--- a/gpgme/rungpg.c
+++ b/gpgme/rungpg.c
@@ -293,7 +293,10 @@ gpg_cancel (void *engine)
if (gpg->colon.fd[1] != -1)
_gpgme_io_close (gpg->colon.fd[1]);
if (gpg->fd_data_map)
- free_fd_data_map (gpg->fd_data_map);
+ {
+ free_fd_data_map (gpg->fd_data_map);
+ gpg->fd_data_map = NULL;
+ }
if (gpg->cmd.fd != -1)
_gpgme_io_close (gpg->cmd.fd);