update credits
[LibreOffice.git] / external / gpgmepp / gpgme.git-fe2892618c20cd40c342cce26ffb6ac4644fd3c3.patch.1
blob1b5e22a7eccd496c80a780b149daedb86e8f463c
1 From fe2892618c20cd40c342cce26ffb6ac4644fd3c3 Mon Sep 17 00:00:00 2001
2 From: Andre Heinecke <aheinecke@gnupg.org>
3 Date: Mon, 28 Oct 2019 16:00:29 +0100
4 Subject: [PATCH 1/1] core,w32: Initialize dbg_help for socket debugging
6 * src/w32-io.c (_gpgme_io_select): Initialize dbg_help.
8 --
9 This fixes a crash on Windows because dbg_help might
10 be used unitialized.
11 ---
12  src/w32-io.c | 2 +-
13  1 file changed, 1 insertion(+), 1 deletion(-)
15 diff --git a/src/w32-io.c b/src/w32-io.c
16 index c5c21f59..80978f9a 100644
17 --- a/src/w32-io.c
18 +++ b/src/w32-io.c
19 @@ -1643,7 +1643,7 @@ _gpgme_io_select (struct io_select_fd_s *fds, size_t nfds, int nonblock)
20    int i;
21    int any;
22    int count;
23 -  void *dbg_help;
24 +  void *dbg_help = NULL;
25    TRACE_BEG  (DEBUG_SYSIO, "_gpgme_io_select", fds,
26               "nfds=%u, nonblock=%u", nfds, nonblock);
28 -- 
29 2.11.0