authorgravatar for thibault@paradigme.techTibboddiT <thibault@paradigme.tech> 2025-10-31 09:44:47+01:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2025-10-31 09:44:47+01:00
log62de7a2efd760bec85a41d52eca641fd61cd4a5d
tree1d087598d9ac8917153a8f883b38bf496a7aefbf
parent389368392e07eb3360bef11ad601755be9f45528
signaturebadge-check Signed by PGP key B5690EEEBB952194

fix typo in std.debug.ElfFile.loadSeparateDebugFile

closes #25667

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

lib/std/debug/ElfFile.zig+1-1
......@@ -377,7 +377,7 @@ fn loadSeparateDebugFile(arena: Allocator, main_loaded: *LoadInnerResult, opt_cr
377377 "debug_line",
378378 })) |name| {
379379 const s = @field(Section.Id, name);
380 if (main_loaded.sections.get(s) == null and result.sections.get(s) != null) {
380 if (main_loaded.sections.get(s) == null and result.sections.get(s) == null) {
381381 break false;
382382 }
383383 } else true;