[Pkg-gnupg-commit] [gpgme] 36/132: w32: Fix closing file descriptors.
Daniel Kahn Gillmor
dkg at fifthhorseman.net
Wed Apr 26 01:01:20 UTC 2017
This is an automated email from the git hooks/post-receive script.
dkg pushed a commit to branch experimental
in repository gpgme.
commit 6f02133bb07726afa6950e5b4685e75621276e60
Author: Justus Winter <justus at g10code.com>
Date: Mon Jan 23 15:08:23 2017 +0100
w32: Fix closing file descriptors.
* src/w32-io.c (writer): Only stop once the buffer is drained.
(destroy_writer): Wait for the writers buffer to be drained. This
aligns '_gpgme_io_close's behavior with close(2) and fclose(3).
GnuPG-bug-id: 2881
Signed-off-by: Justus Winter <justus at g10code.com>
---
src/w32-io.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/src/w32-io.c b/src/w32-io.c
index 0d1c810..6302ad9 100644
--- a/src/w32-io.c
+++ b/src/w32-io.c
@@ -700,7 +700,7 @@ writer (void *arg)
for (;;)
{
LOCK (ctx->mutex);
- if (ctx->stop_me)
+ if (ctx->stop_me && !ctx->nbytes)
{
UNLOCK (ctx->mutex);
break;
@@ -717,7 +717,7 @@ writer (void *arg)
TRACE_LOG ("got data to send");
LOCK (ctx->mutex);
}
- if (ctx->stop_me)
+ if (ctx->stop_me && !ctx->nbytes)
{
UNLOCK (ctx->mutex);
break;
@@ -776,6 +776,9 @@ writer (void *arg)
TRACE_LOG ("waiting for close");
WaitForSingleObject (ctx->close_ev, INFINITE);
+ if (ctx->nbytes)
+ TRACE_LOG1 ("still %d bytes in buffer at close time", ctx->nbytes);
+
CloseHandle (ctx->close_ev);
CloseHandle (ctx->have_data);
CloseHandle (ctx->is_empty);
@@ -892,6 +895,9 @@ destroy_writer (struct writer_context_s *ctx)
SetEvent (ctx->have_data);
UNLOCK (ctx->mutex);
+ /* Give the writer a chance to flush the buffer. */
+ WaitForSingleObject (ctx->is_empty, INFINITE);
+
#ifdef HAVE_W32CE_SYSTEM
/* Scenario: We never create a full pipe, but already started
writing more than the pipe buffer. Then we need to unblock the
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/gpgme.git
More information about the Pkg-gnupg-commit
mailing list