summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Esser2014-02-18 11:21:22 +0100
committerStefan Esser2014-02-18 11:21:22 +0100
commitf18caf315ce8babb842ad09f416918c39567ae27 (patch)
treef4fe5561e0c6886057ecb44b8d6d567223a7ced3
parent80035b7ecc71f6a7fad69ed4c25169cf3c5cce35 (diff)
Some of the test cases fail because log buffer limit was too small.
-rw-r--r--log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/log.c b/log.c
index 32bd7e5..b1b373a 100644
--- a/log.c
+++ b/log.c
@@ -107,8 +107,8 @@ PHP_SUHOSIN_API void suhosin_log(int loglevel, char *fmt, ...)
107 unsigned short etype; 107 unsigned short etype;
108 DWORD evid; 108 DWORD evid;
109#endif 109#endif
110 char buf[4096+64]; 110 char buf[5000];
111 char error[4096+100]; 111 char error[5000];
112 char *ip_address; 112 char *ip_address;
113 char *fname; 113 char *fname;
114 char *alertstring; 114 char *alertstring;