gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] GNU libmicrohttpd branch master updated. 11


From: gitolite
Subject: [GNUnet-SVN] [libmicrohttpd] GNU libmicrohttpd branch master updated. 11f00055cf8dd339dfdb7f2e2b1fadbff811fae2
Date: Fri, 4 Nov 2016 11:28:37 +0100 (CET)

The branch, master has been updated
       via  11f00055cf8dd339dfdb7f2e2b1fadbff811fae2 (commit)
      from  ec46999ff566a16c79af63ecd5a80dc759507258 (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 11f00055cf8dd339dfdb7f2e2b1fadbff811fae2
Author: Christian Grothoff <address@hidden>
Date:   Fri Nov 4 11:28:35 2016 +0100

    style fix: this 'const' is at best confusing, as we are about to free

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

Summary of changes:
 src/microhttpd/connection.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 3b17e0c..a85e590 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3010,7 +3010,8 @@ MHD_connection_handle_idle (struct MHD_Connection 
*connection)
               /* Response is not required anymore for this conectnion. */
               if (NULL != connection->response)
                 {
-                  struct MHD_Response * const resp_clr = connection->response;
+                  struct MHD_Response *resp_clr = connection->response;
+
                   connection->response = NULL;
                   MHD_destroy_response (resp_clr);
                 }


hooks/post-receive
-- 
GNU libmicrohttpd



reply via email to

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