Commit 5829411d authored by Nils Goroll's avatar Nils Goroll

adjust for master changes

Ref: e8985f22711fe9a342b27a10052ae3655f64435c
parent 68935206
...@@ -308,9 +308,11 @@ get_scope(const struct vrt_ctx * const restrict ctx, ...@@ -308,9 +308,11 @@ get_scope(const struct vrt_ctx * const restrict ctx,
return NULL; return NULL;
} }
assert(ctx->req->top);
priv = VRT_priv_top(ctx, (void *)h); priv = VRT_priv_top(ctx, (void *)h);
ws = ctx->req->top->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