Add missing break to evhttp_parse_request_line

This commit is contained in:
Nick Mathewson 2011-08-01 10:30:32 -04:00
parent e918f15a4c
commit 0fcc536bcd

1
http.c
View File

@ -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) {