From 2b6f7069bc483e4c6c08d1c13346c20c87cee151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Sun, 22 Aug 2010 11:35:12 +0000 Subject: [PATCH] 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 --- NEWS | 1 + src/buffer.h | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS b/NEWS index 11607248..d1cdcf28 100644 --- a/NEWS +++ b/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) diff --git a/src/buffer.h b/src/buffer.h index 67a47ab8..bda04241 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -9,6 +9,7 @@ #include #include +#include typedef struct { char *ptr;