From 0fcc536bcd905ba64183fa97850ad43a0df4f128 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 1 Aug 2011 10:30:32 -0400 Subject: [PATCH] Add missing break to evhttp_parse_request_line --- http.c | 1 + 1 file changed, 1 insertion(+) diff --git a/http.c b/http.c index 200b31fc..58fef169 100644 --- a/http.c +++ b/http.c @@ -1588,6 +1588,7 @@ evhttp_parse_request_line(struct evhttp_request *req, char *line) default: break; } + break; case 5: /* Method length is 5 bytes, which can only encompass PATCH and TRACE */ switch (*method) {