diff options
| author | Stefan Esser | 2014-02-18 11:21:22 +0100 |
|---|---|---|
| committer | Stefan Esser | 2014-02-18 11:21:22 +0100 |
| commit | f18caf315ce8babb842ad09f416918c39567ae27 (patch) | |
| tree | f4fe5561e0c6886057ecb44b8d6d567223a7ced3 | |
| parent | 80035b7ecc71f6a7fad69ed4c25169cf3c5cce35 (diff) | |
Some of the test cases fail because log buffer limit was too small.
| -rw-r--r-- | log.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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; |
