| author | |
| committer | |
| log | 950a9d2a10d4a2430e1c26eb49f60bfc92adff77 |
| tree | c0a8efc6b82b13138447545955a95bb11e5fc667 |
| parent | f7e0ff8a5fb3e8426e8f64bba271eae358d123b4 |
| signature |
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/debug/SelfInfo/ElfModule.zig+2-2| ... | ... | @@ -23,8 +23,8 @@ pub const DebugInfo = struct { |
| 23 | 23 | }; |
| 24 | 24 | pub fn deinit(di: *DebugInfo, gpa: Allocator) void { |
| 25 | 25 | 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); | |
| 28 | 28 | unwind.deinit(gpa); |
| 29 | 29 | } |
| 30 | 30 | } |