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;