From: Werner Koch Date: Tue, 30 Jan 2001 12:06:29 +0000 (+0000) Subject: Ugly kludge to avoid blocking in W32's _gpgme_io_write X-Git-Tag: gpgme-0-2-0~15 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=83dd53ffe186129b29ebcb4293c42226fc9710f4;p=gpgme.git Ugly kludge to avoid blocking in W32's _gpgme_io_write --- diff --git a/gpgme/w32-io.c b/gpgme/w32-io.c index c16e441..1e67a64 100644 --- a/gpgme/w32-io.c +++ b/gpgme/w32-io.c @@ -287,6 +287,10 @@ _gpgme_io_write ( int fd, const void *buffer, size_t count ) DWORD nwritten; HANDLE h = fd_to_handle (fd); +#warning writing blocks for large counts, so we limit it here. + if (count > 500) + count = 500; + DEBUG2 ("fd %d: about to write %d bytes\n", fd, (int)count ); if ( !WriteFile ( h, buffer, count, &nwritten, NULL) ) { DEBUG1 ("WriteFile failed: ec=%d\n", (int)GetLastError ());