summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-02-29 12:27:57 +0000
committerChristian Grothoff <christian@grothoff.org>2016-02-29 12:27:57 +0000
commitd3b17d3b19ad509e6e355677cc7fea73eb15c1b9 (patch)
tree855964315d66536482caa23d3d2fbc6d90f6357b
parent601164fa3539f34369374788ad626b1c14e486be (diff)
-Fabian Mewes:
Fix the out-of-bound read of the NUL byte using strlen() in microhttpd/daemon.c:MHD_init_daemon_certificate() Fix the out-of-bound read of the NUL byte using strlen() in microhttpd/daemon.c:MHD_init_daemon_certificate()
-rw-r--r--doc/examples/tlsauthentication.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/tlsauthentication.c b/doc/examples/tlsauthentication.c
index 4d616b6f..f68a686f 100644
--- a/doc/examples/tlsauthentication.c
+++ b/doc/examples/tlsauthentication.c
@@ -98,12 +98,13 @@ load_file (const char *filename)
if (!fp)
return NULL;
- buffer = malloc (size);
+ buffer = malloc (size + 1);
if (!buffer)
{
fclose (fp);
return NULL;
}
+ buffer[size] = '\0';
if (size != fread (buffer, 1, size, fp))
{