aboutsummaryrefslogtreecommitdiff
path: root/doc/examples/tlsauthentication.c
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/tlsauthentication.c')
-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)
98 if (!fp) 98 if (!fp)
99 return NULL; 99 return NULL;
100 100
101 buffer = malloc (size); 101 buffer = malloc (size + 1);
102 if (!buffer) 102 if (!buffer)
103 { 103 {
104 fclose (fp); 104 fclose (fp);
105 return NULL; 105 return NULL;
106 } 106 }
107 buffer[size] = '\0';
107 108
108 if (size != fread (buffer, 1, size, fp)) 109 if (size != fread (buffer, 1, size, fp))
109 { 110 {