Commit 0ce8737f authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

When vcl_miss() take error action, remember to discard backend request.

Ticket: 139


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1807 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent cc21640e
......@@ -567,6 +567,8 @@ cnt_miss(struct sess *sp)
HSH_Unbusy(sp->obj);
HSH_Deref(sp->obj);
sp->obj = NULL;
vbe_free_bereq(sp->bereq);
sp->bereq = NULL;
sp->step = STP_ERROR;
return (0);
}
......
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