authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-09-13 12:16:11+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-09-30 13:44:54+01:00
logd28966785652822b7b763044ce4cb2421247a8f4
tree0e44e97bdc794d20073dcb10fa355800005fe643
parent4cb84f8e486426e66e17cc91dd880d9bdcabc680
signaturelock-open Commit is signed but in an unrecognized format.

std.debug.Pdb: fix leak


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

lib/std/debug/Pdb.zig+1
......@@ -171,6 +171,7 @@ pub fn parseInfoStream(self: *Pdb) !void {
171171 const string_table_index = str_tab_index: {
172172 const name_bytes_len = try reader.takeInt(u32, .little);
173173 const name_bytes = try reader.readAlloc(gpa, name_bytes_len);
174 defer gpa.free(name_bytes);
174175
175176 const HashTableHeader = extern struct {
176177 size: u32,