summaryrefslogtreecommitdiffstats
path: root/httpd.c
diff options
context:
space:
mode:
authordscho <dscho>2002-08-31 14:09:39 +0000
committerdscho <dscho>2002-08-31 14:09:39 +0000
commit0024d7472768635915ee6cc511fc258c121b9b9c (patch)
tree580af88fd581169fbdd2e3a5a02df54e918acc99 /httpd.c
parent08bfb7cb63cd2e9ed35f854965d80833e1e9c8b3 (diff)
downloadlibtdevnc-0024d7472768635915ee6cc511fc258c121b9b9c.tar.gz
libtdevnc-0024d7472768635915ee6cc511fc258c121b9b9c.zip
compiler warnings and format vulnerabilities fixed
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd.c b/httpd.c
index 2b06da2..0821c5b 100644
--- a/httpd.c
+++ b/httpd.c
@@ -211,7 +211,7 @@ httpProcessInput(rfbScreenInfoPtr rfbScreen)
unsigned int maxFnameLen;
FILE* fd;
Bool performSubstitutions = FALSE;
- char str[256];
+ char str[256+32];
#ifndef WIN32
struct passwd *user = getpwuid(getuid());
#endif