aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <martin.schanzenbach@aisec.fraunhofer.de>2016-08-30 23:02:07 +0000
committerMartin Schanzenbach <martin.schanzenbach@aisec.fraunhofer.de>2016-08-30 23:02:07 +0000
commit8269477acc56e3c20bb5a0d5f1a430b524597e12 (patch)
tree136a6495122b78e18145369bd7cd6f656cf1b0e7
parent1f0d846eb045a5f3c778b77c5224df2e23746e25 (diff)
downloadlibmicrohttpd-8269477acc56e3c20bb5a0d5f1a430b524597e12.tar.gz
libmicrohttpd-8269477acc56e3c20bb5a0d5f1a430b524597e12.zip
fix memory corruption
-rw-r--r--src/include/microhttpd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 7347447c..0894b76e 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1217,7 +1217,7 @@ union MHD_ConnectionInfo
1217 * Socket-specific client context. Points to the same address as 1217 * Socket-specific client context. Points to the same address as
1218 * the "socket_context" of the #MHD_NotifyConnectionCallback. 1218 * the "socket_context" of the #MHD_NotifyConnectionCallback.
1219 */ 1219 */
1220 void **socket_context; 1220 void *socket_context;
1221}; 1221};
1222 1222
1223 1223