Skip to content

Commit

Permalink
fix(sourcebundle): Skip all invalid sources
Browse files Browse the repository at this point in the history
#861 missed another spot where the ReadFailed error can cause the write function to fail; this commit fixes that.

Fixes #860
  • Loading branch information
szokeasaurusrex committed Aug 30, 2024
1 parent c343fb8 commit 676940d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symbolic-debuginfo/src/sourcebundle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,7 @@ where
collect_il2cpp_sources(&source, &mut referenced_files);
}

self.add_file(bundle_path, source.as_slice(), info)?;
self.add_file_skip_read_failed(bundle_path, source.as_slice(), info)?;
}

files_handled.insert(filename);
Expand Down

0 comments on commit 676940d

Please sign in to comment.