projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9fd915
)
avoid buffer overflow
author
Bodo Möller
<bodo@openssl.org>
Sat, 31 Mar 2001 07:48:07 +0000
(07:48 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Sat, 31 Mar 2001 07:48:07 +0000
(07:48 +0000)
apps/s_server.c
patch
|
blob
|
history
diff --git
a/apps/s_server.c
b/apps/s_server.c
index 4223d2db1e4676c9cb095856e5432428fbace94c..cd1aa17b26ac5b90d8e95ec9cdc6211dcb397039 100644
(file)
--- a/
apps/s_server.c
+++ b/
apps/s_server.c
@@
-1473,9
+1473,11
@@
static int www_body(char *hostname, int s, unsigned char *context)
break;
}
+#if 0
/* append if a directory lookup */
if (e[-1] == '/')
strcat(p,"index.html");
+#endif
/* if a directory, do the index thang */
if (stat(p,&st_buf) < 0)
@@
-1487,7
+1489,13
@@
static int www_body(char *hostname, int s, unsigned char *context)
}
if (S_ISDIR(st_buf.st_mode))
{
+#if 0 /* must check buffer size */
strcat(p,"/index.html");
+#else
+ BIO_puts(io,text);
+ BIO_printf(io,"'%s' is a directory\r\n",p);
+ break;
+#endif
}
if ((file=BIO_new_file(p,"r")) == NULL)