gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] branch master updated: Fixed compiler warni


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] branch master updated: Fixed compiler warning.
Date: Wed, 15 Mar 2017 08:45:26 +0100

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 b8c844ae Fixed compiler warning.
b8c844ae is described below

commit b8c844ae6acfa03b0e3390e44b77714674ca83b6
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Wed Mar 15 10:45:15 2017 +0300

    Fixed compiler warning.
---
 src/microhttpd/daemon.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 9e3f6231..6f0fe9f2 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -1084,8 +1084,8 @@ MHD_get_fdset2 (struct MHD_Daemon *daemon,
                 _("MHD_get_fdset2() called with except_fd_set "
                   "set to NULL. Such behavior is unsupported.\n"));
 #endif
+      FD_ZERO (&es);
       except_fd_set = &es;
-      FD_ZERO(except_fd_set);
     }
 
 #ifdef EPOLL_SUPPORT
@@ -3457,8 +3457,8 @@ MHD_run_from_select (struct MHD_Daemon *daemon,
                 _("MHD_run_from_select() called with except_fd_set "
                   "set to NULL. Such behavior is deprecated.\n"));
 #endif
+      FD_ZERO (&es);
       except_fd_set = &es;
-      FD_ZERO(except_fd_set);
     }
   if (0 != (daemon->options & MHD_USE_EPOLL))
     {

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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