diff options
author | Eric Huss <eric@huss.org> | 2019-08-13 13:48:54 -0700 |
---|---|---|
committer | Eric Huss <eric@huss.org> | 2019-08-13 13:48:54 -0700 |
commit | f4dd4a2438c0000846a6bfd21d8b18dc47f280cf (patch) | |
tree | 7c401dc26a6cdb947a279fe964f72d06f275d5bb /src | |
parent | d03b251af5f935ea8363ebc59f1caddf99feb790 (diff) | |
download | milf-rs-f4dd4a2438c0000846a6bfd21d8b18dc47f280cf.tar.gz milf-rs-f4dd4a2438c0000846a6bfd21d8b18dc47f280cf.zip |
Fix error line/column when using CRLF line endings.
Diffstat (limited to 'src')
-rw-r--r-- | src/de.rs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1775,7 +1775,10 @@ impl<'a> Deserializer<'a> { /// All indexes are 0-based. fn to_linecol(&self, offset: usize) -> (usize, usize) { let mut cur = 0; - for (i, line) in self.input.lines().enumerate() { + // Use split_terminator instead of lines so that if there is a `\r`, + // it is included in the offset calculation. The `+1` values below + // account for the `\n`. + for (i, line) in self.input.split_terminator('\n').enumerate() { if cur + line.len() + 1 > offset { return (i, offset - cur); } |