Commit e7cf8dc3 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Polish

parent 5ed9cb9d
...@@ -396,9 +396,9 @@ WS_VSB_new(struct vsb *vsb, struct ws *ws) ...@@ -396,9 +396,9 @@ WS_VSB_new(struct vsb *vsb, struct ws *ws)
WS_Assert(ws); WS_Assert(ws);
u = WS_ReserveAll(ws); u = WS_ReserveAll(ws);
if (WS_Overflowed(ws) || u < 2) if (WS_Overflowed(ws) || u < 2)
AN(VSB_new(vsb, bogus, sizeof bogus, 0)); AN(VSB_new(vsb, bogus, sizeof bogus, VSB_FIXEDLEN));
else else
AN(VSB_new(vsb, WS_Front(ws), u, 0)); AN(VSB_new(vsb, WS_Front(ws), u, VSB_FIXEDLEN));
} }
char * char *
......
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