Commit 74f9bcd6 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Yet another XML/ESI parse corner case:

	<esi:include  foo=bar src=/body2 />



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2928 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 21409326
......@@ -260,6 +260,7 @@ esi_attrib(const struct esi_work *ew, txt *in, txt *attrib, txt *val)
while(in->b < in->e && !isspace(*in->b))
in->b++;
val->e = in->b;
in->b++;
}
*val->e = '\0';
return (1);
......
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