update credits
[LibreOffice.git] / external / gpgmepp / w32-add-initializer.patch.1
blobb33f0d42a95f4013e8f121cc285b592de29ab97b
1 Make sure the gpgrt_lock_init gets called in libgpg-error, otherwise
2 several critical section statics are uninitialized
4 diff -ur gpgmepp.org/src/version.c gpgmepp/src/version.c
5 --- gpgmepp.org/src/version.c   2016-11-16 13:22:41.000000000 +0100
6 +++ gpgmepp/src/version.c       2017-11-23 17:16:35.218735200 +0100
7 @@ -66,6 +66,9 @@
8      return;
9  
10  #ifdef HAVE_W32_SYSTEM
11 +  // initialize libgpg-error stuff
12 +  gpg_err_init();
14    /* We need to make sure that the sockets are initialized.  */
15    {
16      WSADATA wsadat;