authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-31 17:24:22 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-31 17:24:56 -07:00
log7306ea63fbf1d83b3ba8df1822a55d2e859997ab
tree9106b618ff29bd1d29b0c3a38683edc96a3e1fee
parent19c3e2203e69a6bc51b9e7c80eeb57cb01978ba2
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

fix invalid free from tests

debug allocator is strict about length matching

1 files changed, 1 insertions(+), 1 deletions(-)

yaml.zig+1-1
......@@ -87,7 +87,7 @@ pub const Item = union(enum) {
8787pub const Sequence = []const Item;
8888
8989pub const Key = struct {
90 key: string,
90 key: [:0]const u8,
9191 value: Value,
9292
9393 pub fn deinit(self: *const Key, alloc: std.mem.Allocator) void {