summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/buffer.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/common/buffer.c b/common/buffer.c
index 6064cbe..cc5480f 100644
--- a/common/buffer.c
+++ b/common/buffer.c
@@ -71,7 +71,6 @@ void buffer_bump(ha_buffer_t* buf, int count)
intl = (internal_t*)malloc(allocated);
if(!intl)
{
- ha_messagex(NULL, LOG_CRIT, "out of memory");
buf->_dt = NULL;
buf->_pp = buf->_rp = NULL;
return;
@@ -221,10 +220,10 @@ int ha_bufreadline(int fd, ha_buffer_t* buf)
/* Fatal errors */
else if(l == -1)
{
- if(errno != EINTR)
- ha_message(NULL, LOG_ERR, "couldn't read data");
+ if(errno == EINTR)
+ return 0;
- return 0;
+ return -1;
}
}