[git] GPGME - branch, master, updated. gpgme-1.10.0-160-g4763974

by Werner Koch cvs at cvs.gnupg.org
Fri Mar 23 15:53:01 CET 2018


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 "GnuPG Made Easy".

The branch, master has been updated
       via  4763974ef6932c503e35c3d14fe47a66a5323f48 (commit)
      from  e5abf4827aead50437bbdff8cfdd5e9fdc6ed72d (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 4763974ef6932c503e35c3d14fe47a66a5323f48
Author: Werner Koch <wk at gnupg.org>
Date:   Fri Mar 23 15:46:18 2018 +0100

    core: Need to increase an array in the gpg engine.
    
    * src/engine-gpg.c (build_argv): Allcate one slot more for ARGV.
    --
    
    Fixes-commit: b9000bc293164ff62efa7e91e5cf6d5fc19d482f

diff --git a/src/engine-gpg.c b/src/engine-gpg.c
index 22d327e..3b9a6ff 100644
--- a/src/engine-gpg.c
+++ b/src/engine-gpg.c
@@ -875,7 +875,7 @@ build_argv (engine_gpg_t gpg, const char *pgmname)
     argc++;
   if (!gpg->cmd.used)
     argc++;	/* --batch */
-  argc += 1;	/* --no-sk-comments */
+  argc += 2;	/* --no-sk-comments, --request-origin */
 
   argv = calloc (argc + 1, sizeof *argv);
   if (!argv)

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

Summary of changes:
 src/engine-gpg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GnuPG Made Easy
http://git.gnupg.org




More information about the Gnupg-commits mailing list