mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
Dir.makeOpenPathAccessMaskW: Fix leaking intermediate directory handles
Fixes a regression introduced in 67455c5e70e86dbb7805ff9a415f1b13b14f36da. The `errdefer` cannot run since its not possible for an error to occur, and we don't want it to run on the last handle, so we move the closing back down to where it was before 67455c5e70e86dbb7805ff9a415f1b13b14f36da.
This commit is contained in:
parent
332fbb4b02
commit
5490021ab7
@ -1217,10 +1217,13 @@ fn makeOpenPathAccessMaskW(self: Dir, sub_path: []const u8, access_mask: u32, no
|
||||
},
|
||||
else => |e| return e,
|
||||
};
|
||||
// Don't leak the intermediate file handles
|
||||
errdefer if (result) |*dir| dir.close();
|
||||
|
||||
component = it.next() orelse return result.?;
|
||||
|
||||
// Don't leak the intermediate file handles
|
||||
if (result) |*dir| {
|
||||
dir.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user