Commit 9d6c63a5 authored by Nils Goroll's avatar Nils Goroll
parent d9cbec68
Pipeline #441 failed with stages
...@@ -335,9 +335,11 @@ get_scope(const struct vrt_ctx * const restrict ctx, ...@@ -335,9 +335,11 @@ get_scope(const struct vrt_ctx * const restrict ctx,
return (NULL); return (NULL);
} }
assert(ctx->req->topreq);
priv = VRT_priv_top(ctx, (void *)h); priv = VRT_priv_top(ctx, (void *)h);
ws = ctx->req->topreq->ws; if (ctx->req->top)
ws = ctx->req->top->topreq->ws;
else
ws = ctx->req->ws;
break; break;
} }
default: default:
......
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