[git] GpgOL - branch, master, updated. gpgol-2.3.1-33-g39f9f19

by Andre Heinecke cvs at cvs.gnupg.org
Thu Nov 8 15:36:23 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 extension for MS Outlook".

The branch, master has been updated
       via  39f9f19fb8749b10bcdc9348f23bf5c61550994f (commit)
       via  95c1ee605d8f6f74a63897c9b00c11b2c5db1d11 (commit)
       via  e86a0c1c06505b4846e50d1b01ed552faefeb7a9 (commit)
      from  5152f5a30c7bbf4716f7c6b1c279f7de3f47595c (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 39f9f19fb8749b10bcdc9348f23bf5c61550994f
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Thu Nov 8 14:04:23 2018 +0100

    Add some NEWS
    
    --

diff --git a/NEWS b/NEWS
index f5bb4ea..62c683a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,17 @@
 Noteworthy changes for version 2.3.2 (unreleased)
 =================================================
 
+ * Reduced leakage of private information without
+   DBG_DATA. (T4193)
+
+ * Added handling for Junk folders. (T4188)
+
+ * Added a fallback for encoding problems. (T4156)
+
+ * Fixed system wide default configuration.
+
+ * Added WindowMessage API for external use. (T4241)
+
 
 Noteworthy changes for version 2.3.1 (2018-10-16)
 =================================================

commit 95c1ee605d8f6f74a63897c9b00c11b2c5db1d11
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Thu Nov 8 14:01:40 2018 +0100

    Use WM_USER without offset for ext messages
    
    * src/windowmessages.cpp,
    tests/run-messanger.cpp: Use WM_USER without offset.
    
    --
    Some documentation like the wine windowmessages list documents
    that above WM_USER messages are still system defined.

diff --git a/src/windowmessages.cpp b/src/windowmessages.cpp
index c2f2ca0..d39cd2b 100644
--- a/src/windowmessages.cpp
+++ b/src/windowmessages.cpp
@@ -290,7 +290,7 @@ gpgol_window_proc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
         }
         TRETURN 0;
     }
-  else if (message == WM_USER + 43)
+  else if (message == WM_USER)
     {
       switch (wParam)
         {
diff --git a/tests/run-messenger.cpp b/tests/run-messenger.cpp
index 99c4cf2..8cf007d 100644
--- a/tests/run-messenger.cpp
+++ b/tests/run-messenger.cpp
@@ -66,7 +66,7 @@ int main(int argc, char **argv)
   if (argc == 1)
     {
       printf ("Sending message: %i\n", id);
-      SendMessage (gpgol, WM_USER + 43, id, NULL);
+      SendMessage (gpgol, WM_USER, id, NULL);
       exit (0);
     }
 

commit e86a0c1c06505b4846e50d1b01ed552faefeb7a9
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Thu Nov 8 14:01:06 2018 +0100

    Add tracing in shutdown
    
    * src/gpgoladdin.cpp (GpgolAddin::shutdown): Add tracing.

diff --git a/src/gpgoladdin.cpp b/src/gpgoladdin.cpp
index be3bdac..bd9cdb8 100644
--- a/src/gpgoladdin.cpp
+++ b/src/gpgoladdin.cpp
@@ -1189,11 +1189,12 @@ GpgolAddin::addRibbon (LPDISPATCH disp)
 void
 GpgolAddin::shutdown ()
 {
+  TSTART;
   if (m_shutdown)
     {
       log_debug ("%s:%s: Already shutdown",
                  SRCNAME, __func__);
-      return;
+      TRETURN;
     }
 
   m_shutdown = true;
@@ -1233,6 +1234,7 @@ GpgolAddin::shutdown ()
 
   gpgol_release (m_application);
   m_application = nullptr;
+  TRETURN;
 }
 
 void

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

Summary of changes:
 NEWS                    | 11 +++++++++++
 src/gpgoladdin.cpp      |  4 +++-
 src/windowmessages.cpp  |  2 +-
 tests/run-messenger.cpp |  2 +-
 4 files changed, 16 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GnuPG extension for MS Outlook
http://git.gnupg.org




More information about the Gnupg-commits mailing list