From 2d6ae0ebe1bbc767eb33459f4489e0d1e5d73fa4 Mon Sep 17 00:00:00 2001 From: Ludovic 'Archivist' Lagouardette Date: Tue, 28 May 2024 17:04:55 +0200 Subject: [PATCH] Fixed what appears to be extra zealous array cleanup --- lib.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib.c b/lib.c index 222c137..34c26ee 100644 --- a/lib.c +++ b/lib.c @@ -1703,8 +1703,7 @@ static void push_delimited_array(struct context* ctx) { while(counter--) { ink_pop(ctx); } - /* Pop the marker too */ - ink_pop(ctx); + /* Put value in place */ ink_push(ctx, a); }