diff options
author | 2023-01-26 05:20:53 -0800 | |
---|---|---|
committer | 2023-01-26 05:20:53 -0800 | |
commit | fbe45fcb037fa561692939a2066ca4c4e0223ff7 (patch) | |
tree | 54c8911e744e3637e56719f70254cc441c0f85b5 | |
parent | 2c23d8736f463ee097b03212559ee2c25c6e5ee6 (diff) | |
download | bun-fbe45fcb037fa561692939a2066ca4c4e0223ff7.tar.gz bun-fbe45fcb037fa561692939a2066ca4c4e0223ff7.tar.zst bun-fbe45fcb037fa561692939a2066ca4c4e0223ff7.zip |
Fix branching on undefined
-rw-r--r-- | src/allocators.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/allocators.zig b/src/allocators.zig index e7890eb98..813875bf6 100644 --- a/src/allocators.zig +++ b/src/allocators.zig @@ -298,6 +298,7 @@ pub fn BSSStringList(comptime _count: usize, comptime _item_length: usize) type if (!loaded) { instance = Self{ .allocator = allocator, + .backing_buf_used = 0, }; loaded = true; } |