summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Brinkmann <mb@g10code.com>2004-09-30 00:24:58 +0000
committerMarcus Brinkmann <mb@g10code.com>2004-09-30 00:24:58 +0000
commit1819293208e3a2eaf01303b539a2d091626cbe5e (patch)
tree2e64088de9bcd7dd46c8bd095104f421bbd2c04e
parenta2d38f6824c79eeb906e02266a51e233502ce684 (diff)
downloadgpgme-1819293208e3a2eaf01303b539a2d091626cbe5e.tar.gz
2004-09-30 Marcus Brinkmann <marcus@g10code.de>
* rungpg.c (read_status): Move the polling of the output data pipe to just before removing the command fd, from just before adding it. This avoids buffering problems.
-rw-r--r--gpgme/ChangeLog4
-rw-r--r--gpgme/rungpg.c48
2 files changed, 29 insertions, 23 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog
index 62bb588a..099faa9e 100644
--- a/gpgme/ChangeLog
+++ b/gpgme/ChangeLog
@@ -1,5 +1,9 @@
2004-09-30 Marcus Brinkmann <marcus@g10code.de>
+ * rungpg.c (read_status): Move the polling of the output data pipe
+ to just before removing the command fd, from just before adding
+ it. This avoids buffering problems.
+
* data.c (_gpgme_data_inbound_handler): Use _gpgme_io_read, not
read, to improve debug output.
diff --git a/gpgme/rungpg.c b/gpgme/rungpg.c
index 5d42f932..ce938c62 100644
--- a/gpgme/rungpg.c
+++ b/gpgme/rungpg.c
@@ -841,29 +841,6 @@ read_status (engine_gpg_t gpg)
if (nread > 1)
DEBUG0 ("ERROR, unexpected data in read_status");
- /* Before we can actually add the command
- fd, we might have to flush the linked
- output data pipe. */
- if (gpg->cmd.linked_idx != -1
- && gpg->fd_data_map[gpg->cmd.linked_idx].fd != -1)
- {
- struct io_select_fd_s fds;
- fds.fd = gpg->fd_data_map[gpg->cmd.linked_idx].fd;
- fds.for_read = 1;
- fds.for_write = 0;
- fds.frozen = 0;
- fds.opaque = NULL;
- do
- {
- fds.signaled = 0;
- _gpgme_io_select (&fds, 1, 1);
- if (fds.signaled)
- _gpgme_data_inbound_handler
- (gpg->cmd.linked_data, fds.fd);
- }
- while (fds.signaled);
- }
-
add_io_cb (gpg, gpg->cmd.fd, 0,
command_handler, gpg,
&gpg->fd_data_map[gpg->cmd.idx].tag);
@@ -883,6 +860,31 @@ read_status (engine_gpg_t gpg)
{
if (gpg->cmd.used)
{
+ /* Before we can actually add the
+ command fd, we might have to flush
+ the linked output data pipe. */
+ if (gpg->cmd.linked_idx != -1
+ && gpg->fd_data_map[gpg->cmd.linked_idx].fd
+ != -1)
+ {
+ struct io_select_fd_s fds;
+ fds.fd =
+ gpg->fd_data_map[gpg->cmd.linked_idx].fd;
+ fds.for_read = 1;
+ fds.for_write = 0;
+ fds.frozen = 0;
+ fds.opaque = NULL;
+ do
+ {
+ fds.signaled = 0;
+ _gpgme_io_select (&fds, 1, 1);
+ if (fds.signaled)
+ _gpgme_data_inbound_handler
+ (gpg->cmd.linked_data, fds.fd);
+ }
+ while (fds.signaled);
+ }
+
/* XXX We must check if there are any
more fds active after removing this
one. */