Commit 71c29e86 authored by Nils Goroll's avatar Nils Goroll

handle workspace overflow in V1F_Setup_Fetch()

Ref #2645 but cannot be the cause because workspace is just not
overflowed
parent acd9cab1
......@@ -216,7 +216,11 @@ V1F_FetchRespHdr(struct busyobj *bo)
assert(bo->vfc->resp == bo->beresp);
if (bo->htc->body_status != BS_NONE &&
bo->htc->body_status != BS_ERROR)
(void)V1F_Setup_Fetch(bo->vfc, bo->htc);
if (V1F_Setup_Fetch(bo->vfc, bo->htc)) {
VSLb(bo->vsl, SLT_FetchError, "overflow");
htc->doclose = SC_RX_OVERFLOW;
return (-1);
}
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