2004-03-11 Marcus Brinkmann <marcus@g10code.de>

* engine-gpgsm.c (gpgsm_cancel): Only call assuan_disconnect if
	GPGSM->assuan_ctx is not NULL.  Set it to NULL afterwards.
This commit is contained in:
Marcus Brinkmann 2004-03-10 23:52:18 +00:00
parent 6de192d691
commit dcb04fb195
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-03-11 Marcus Brinkmann <marcus@g10code.de>
* engine-gpgsm.c (gpgsm_cancel): Only call assuan_disconnect if
GPGSM->assuan_ctx is not NULL. Set it to NULL afterwards.
2004-03-07 Marcus Brinkmann <marcus@g10code.de>
* gpgme-config.in: Do not emit include and lib directory for

View File

@ -289,7 +289,11 @@ gpgsm_cancel (void *engine)
if (gpgsm->message_cb.fd != -1)
_gpgme_io_close (gpgsm->message_cb.fd);
assuan_disconnect (gpgsm->assuan_ctx);
if (gpgsm->assuan_ctx)
{
assuan_disconnect (gpgsm->assuan_ctx);
gpgsm->assuan_ctx = NULL;
}
return 0;
}