From a828edaf6af085e8fe9ad4a38267a1e75eb3269a Mon Sep 17 00:00:00 2001 From: Bertrand Paquet Date: Wed, 25 Jul 2012 00:36:04 +0200 Subject: [PATCH] Add a comment --- http_parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/http_parser.c b/http_parser.c index b8c092a..8122376 100644 --- a/http_parser.c +++ b/http_parser.c @@ -2121,6 +2121,7 @@ http_parser_parse_url(const char *buf, size_t buflen, int is_connect, } /* host must be present if there is a schema */ + /* parsing http:///toto will fail */ if ((u->field_set & ((1 << UF_SCHEMA) | (1 << UF_HOST))) != 0) { if (http_parse_host(buf, u, found_at) != 0) { return 1;