From 6687a3fc112581e88f4f568bc509af0c09ba87d0 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 4 May 2026 11:14:06 +0900 Subject: fix #2 --- src/main.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.zig b/src/main.zig index 40a18ba..b6553dd 100644 --- a/src/main.zig +++ b/src/main.zig @@ -47,6 +47,7 @@ pub fn main(init: std.process.Init) !void { const stdout = std.Io.File.stdout(); while (try runtime.next()) |result| { + defer result.deinit(allocator); const output = try jv.stringify(allocator, result); defer allocator.free(output); try stdout.writeStreamingAll(init.io, output); -- cgit v1.3.1