Commit 5b819d35 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Remove an assert which is no longer true in the case of a non-headered

(not-RFC2616 compliant) request.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2633 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 8b3144f2
......@@ -372,7 +372,6 @@ http_dissect_hdrs(struct worker *w, struct http *hp, int fd, char *p, txt t)
hp->nhd = HTTP_HDR_FIRST;
hp->conds = 0;
r = NULL; /* For FlexeLint */
assert(p <= t.e); /* http_header_complete() guarantees this */
for (; p < t.e; p = r) {
/* XXX: handle continuation lines */
q = strchr(p, '\n');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment