[git] GnuPG - branch, master, updated. gnupg-2.1.0beta3-208-ge498180

by Daiki Ueno cvs at cvs.gnupg.org
Fri Apr 19 12:38:38 CEST 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".

The branch, master has been updated
       via  e498180d5647d3427a7d7e6c82a9f09cf1ba439d (commit)
      from  ff6115227a1ced14e2fb3d160a12181b9dfbc502 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e498180d5647d3427a7d7e6c82a9f09cf1ba439d
Author: Daiki Ueno <ueno at gnu.org>
Date:   Tue Apr 2 15:45:58 2013 +0900

    Make sure to call fflush if estream_t is backed with stdio
    
    * common/estream.c (es_func_fp_write): Call fflush after fwrite.

diff --git a/common/estream.c b/common/estream.c
index 79fa405..79e3efb 100644
--- a/common/estream.c
+++ b/common/estream.c
@@ -1275,6 +1275,7 @@ es_func_fp_write (void *cookie, const void *buffer, size_t size)
 #else
       bytes_written = fwrite (buffer, 1, size, file_cookie->fp);
 #endif
+      fflush (file_cookie->fp);
     }
   else
     bytes_written = size; /* Successfully written to the bit bucket.  */

-----------------------------------------------------------------------

Summary of changes:
 common/estream.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
The GNU Privacy Guard
http://git.gnupg.org




More information about the Gnupg-commits mailing list