[git] GnuPG - branch, master, updated. gnupg-2.1.0beta3-94-g9f0e9ea

by Werner Koch cvs at cvs.gnupg.org
Thu Nov 8 19:42:04 CET 2012


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  9f0e9ea80ca30269770eb955e33b54401bff917f (commit)
      from  905b6a36d3ca21b2f619721e1de892398e5eb759 (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 9f0e9ea80ca30269770eb955e33b54401bff917f
Author: Werner Koch <wk at gnupg.org>
Date:   Tue Nov 6 18:51:47 2012 +0100

    agent: Use wipememory instead of memset in one place.
    
    * agent/command.c (clear_outbuf): Use wipememory.  Suggested by Ben
    Kibbey.

diff --git a/agent/command.c b/agent/command.c
index 88cd62c..3ba921b 100644
--- a/agent/command.c
+++ b/agent/command.c
@@ -158,7 +158,7 @@ clear_outbuf (membuf_t *mb)
   p = get_membuf (mb, &n);
   if (p)
     {
-      memset (p, 0, n);
+      wipememory (p, n);
       xfree (p);
     }
 }

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

Summary of changes:
 agent/command.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


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




More information about the Gnupg-commits mailing list