Fix buffer.h to include stdio.h as it is needer for SEGFAULT() (fixes #2250)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2766 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
7e5b0fe9ab
commit
2b6f7069bc
1
NEWS
1
NEWS
|
@ -5,6 +5,7 @@ NEWS
|
|||
|
||||
- 1.4.28 -
|
||||
* Rename fdevent_event_add to _set to reflect what the function does. Fix some handlers.
|
||||
* Fix buffer.h to include stdio.h as it is needer for SEGFAULT() (fixes #2250)
|
||||
|
||||
- 1.4.27 - 2010-08-13
|
||||
* Fix handling return value of SSL_CTX_set_options (fixes #2157, thx mlcreech)
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <stdio.h>
|
||||
|
||||
typedef struct {
|
||||
char *ptr;
|
||||
|
|
Loading…
Reference in New Issue