2010-10-28 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>

* opassuan.c (gpgme_op_assuan_transact_ext): Fix uninitialized
	value use.  Reported by Marc Mutz.
This commit is contained in:
Marcus Brinkmann 2010-10-28 14:00:14 +00:00
parent de9f0b932e
commit b65638692e
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2010-10-28 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
* opassuan.c (gpgme_op_assuan_transact_ext): Fix uninitialized
value use. Reported by Marc Mutz.
2010-10-07 Werner Koch <wk@g10code.com>
* gpgme-tool.c (ARGP_ERR_UNKNOWN): Use EDEADLK if available.

View File

@ -126,9 +126,10 @@ gpgme_op_assuan_transact_ext (gpgme_ctx_t ctx,
data_cb, data_cb_value,
inq_cb, inq_cb_value,
status_cb, status_cb_value);
if (!err)
err = _gpgme_wait_one_ext (ctx, &op_err);
if (err)
goto out;
err = _gpgme_wait_one_ext (ctx, &op_err);
if (op_err)
{
TRACE_LOG2 ("op_err = %s <%s>", gpgme_strerror (op_err),
@ -140,7 +141,8 @@ gpgme_op_assuan_transact_ext (gpgme_ctx_t ctx,
}
if (op_err_p)
*op_err_p = op_err;
out:
return TRACE_ERR (err);
}