Skip to content

Commit efa2430

Browse files
authored
Ignore potential errors during dbg-related object construction on Darwin. (#44637)
1 parent 515a242 commit efa2430

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/debuginfo.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -814,8 +814,10 @@ static objfileentry_t &find_object_file(uint64_t fbase, StringRef fname) JL_NOTS
814814
StringRef((const char *)fbase, msize), "", false);
815815
auto origerrorobj = llvm::object::ObjectFile::createObjectFile(
816816
membuf->getMemBufferRef(), file_magic::unknown);
817-
if (!origerrorobj)
817+
if (!origerrorobj) {
818+
ignoreError(origerrorobj);
818819
return entry;
820+
}
819821

820822
llvm::object::MachOObjectFile *morigobj = (llvm::object::MachOObjectFile*)
821823
origerrorobj.get().get();

0 commit comments

Comments
 (0)