Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hkctkuy committed Nov 8, 2023
1 parent e1c155f commit e747a36
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions casr/src/bin/casr-cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,10 @@ fn make_clusters(
(0..len).into_par_iter().for_each(|i| {
if let Ok(report) = util::report_from_file(casreps[i].as_path()) {
if let Ok(trace) = report.filtered_stacktrace() {
let crashline = report.crashline;
casrep_info
.write()
.unwrap()
.push((casreps[i].clone(), (trace, crashline)));
.push((casreps[i].clone(), (trace, report.crashline)));
} else {
badreports.write().unwrap().push(casreps[i].clone());
}
Expand Down

0 comments on commit e747a36

Please sign in to comment.