mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
stage2: link: fix not freeing debug line free list
This commit is contained in:
parent
ca19c42b74
commit
b7a883b7d1
@ -552,6 +552,7 @@ pub const File = struct {
|
|||||||
self.local_symbol_free_list.deinit(self.allocator);
|
self.local_symbol_free_list.deinit(self.allocator);
|
||||||
self.offset_table_free_list.deinit(self.allocator);
|
self.offset_table_free_list.deinit(self.allocator);
|
||||||
self.text_block_free_list.deinit(self.allocator);
|
self.text_block_free_list.deinit(self.allocator);
|
||||||
|
self.dbg_line_fn_free_list.deinit(self.allocator);
|
||||||
self.offset_table.deinit(self.allocator);
|
self.offset_table.deinit(self.allocator);
|
||||||
if (self.owns_file_handle) {
|
if (self.owns_file_handle) {
|
||||||
if (self.file) |f| f.close();
|
if (self.file) |f| f.close();
|
||||||
|
Loading…
Reference in New Issue
Block a user