Commit 4981c41f authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Push the output gzip buffer before we process an included object, to

maintain proper ordering.
parent 81ce41b5
......@@ -364,6 +364,11 @@ ESI_Deliver(struct sess *sp)
q++;
r = (void*)strchr((const char*)q, '\0');
AN(r);
if (obufl > 0) {
ved_sendchunk(sp, NULL, 0,
obuf, obufl);
obufl = 0;
}
Debug("INCL [%s][%s] BEGIN\n", q, p);
ved_include(sp, (const char*)q, (const char*)p);
Debug("INCL [%s][%s] END\n", q, p);
......
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