authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-09-22 15:27:16+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-09-30 13:44:56+01:00
log950a9d2a10d4a2430e1c26eb49f60bfc92adff77
treec0a8efc6b82b13138447545955a95bb11e5fc667
parentf7e0ff8a5fb3e8426e8f64bba271eae358d123b4
signaturelock-open Commit is signed but in an unrecognized format.

typo


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

lib/std/debug/SelfInfo/ElfModule.zig+2-2
......@@ -23,8 +23,8 @@ pub const DebugInfo = struct {
2323 };
2424 pub fn deinit(di: *DebugInfo, gpa: Allocator) void {
2525 if (di.loaded_elf) |*loaded_elf| loaded_elf.deinit(gpa);
26 for (di.unwind) |*opt_unwind| {
27 const unwind = &(opt_unwind orelse continue);
26 for (&di.unwind) |*opt_unwind| {
27 const unwind = &(opt_unwind.* orelse continue);
2828 unwind.deinit(gpa);
2929 }
3030 }