gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] branch master updated: MHD_start_daemon_va (): fixed san


From: gnunet
Subject: [libmicrohttpd] branch master updated: MHD_start_daemon_va (): fixed sanitizer error
Date: Sun, 05 Sep 2021 16:54:33 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new dc802aa5 MHD_start_daemon_va (): fixed sanitizer error
dc802aa5 is described below

commit dc802aa5eae2fc5821ee03915c501c8880c62677
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Sun Sep 5 17:54:16 2021 +0300

    MHD_start_daemon_va (): fixed sanitizer error
---
 src/microhttpd/daemon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 679bfbcb..69203be7 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -6502,7 +6502,7 @@ MHD_start_daemon_va (unsigned int flags,
     *pflags |= MHD_USE_INTERNAL_POLLING_THREAD;
   }
   if (0 == (*pflags & MHD_USE_INTERNAL_POLLING_THREAD))
-    *pflags = (*pflags & ~MHD_USE_ITC); /* useless if we are using 'external' 
select */
+    *pflags = (*pflags & ((enum MHD_FLAG) ~MHD_USE_ITC)); /* useless if we are 
using 'external' select */
   else
   {
 #ifdef HAVE_LISTEN_SHUTDOWN

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]