diff options
author | Martin Schanzenbach <martin.schanzenbach@aisec.fraunhofer.de> | 2016-08-30 23:02:07 +0000 |
---|---|---|
committer | Martin Schanzenbach <martin.schanzenbach@aisec.fraunhofer.de> | 2016-08-30 23:02:07 +0000 |
commit | 8269477acc56e3c20bb5a0d5f1a430b524597e12 (patch) | |
tree | 136a6495122b78e18145369bd7cd6f656cf1b0e7 | |
parent | 1f0d846eb045a5f3c778b77c5224df2e23746e25 (diff) |
fix memory corruption
-rw-r--r-- | src/include/microhttpd.h | 2 |
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 * Socket-specific client context. Points to the same address as * the "socket_context" of the #MHD_NotifyConnectionCallback. */ - void **socket_context; + void *socket_context; }; |