From fc3c4ecb02312bc86df6272432120b085e51dc26 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Wed, 29 Feb 2012 13:40:29 +0100 Subject: [PATCH] fix bug in call to httpParserHeader --- src/http/parser/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/parser/parse.c b/src/http/parser/parse.c index 9962ea4..82c7e7b 100644 --- a/src/http/parser/parse.c +++ b/src/http/parser/parse.c @@ -115,7 +115,7 @@ httpParserParse(void * _this, int fd) break; } - httpParserHeader(this->current, line, line_end); + httpParserHeader(this, line, line_end); break; case HTTP_MESSAGE_HEADERS_DONE: