Auto merge of #76598 - ad-anssi:diagnostic_errors_fix, r=estebank
Fixing memory exhaustion when formatting short code suggestion Details can be found in issue #76597. This PR replaces substractions with `saturating_sub`'s to avoid usize wrapping leading to memory exhaustion when formatting short suggestion messages.
This commit is contained in:
commit
17d3277064
5 changed files with 43 additions and 4 deletions
|
@ -694,9 +694,13 @@ impl<'a> Parser<'a> {
|
|||
Ok(t) => {
|
||||
// Parsed successfully, therefore most probably the code only
|
||||
// misses a separator.
|
||||
let mut exp_span = self.sess.source_map().next_point(sp);
|
||||
if self.sess.source_map().is_multiline(exp_span) {
|
||||
exp_span = sp;
|
||||
}
|
||||
expect_err
|
||||
.span_suggestion_short(
|
||||
self.sess.source_map().next_point(sp),
|
||||
exp_span,
|
||||
&format!("missing `{}`", token_str),
|
||||
token_str,
|
||||
Applicability::MaybeIncorrect,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue