diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-21 02:10:44 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-21 02:46:30 +0300 |
commit | abfbeb17e56bd9abc275de0f7ace6c197e00e3bf (patch) | |
tree | 251134ddb2bd0929bff310b707d3b5bde239e4ee /tests/autoeol-input.txt | |
parent | 3b3bc070f802491e98f87d9191e7d33fec78dd5a (diff) | |
download | sciteco-abfbeb17e56bd9abc275de0f7ace6c197e00e3bf.tar.gz |
fixed EOL conversion on UTF-8 texts
* The old bug of saving gchar in gints, so teco_eol_reader_t::last_char could become negative.
* When converting from an UTF-8 text with CRLF linebreaks, we could have data loss and corruptions.
* On strings ending in UTF-8 characters, teco_eol_reader_t::offset would overflow, resulting
in invalid reads and potentially insertion of data garbage.
I observed this with G~ on Gtk.
* Test cased updated. Couldn't reproduce the bug with the test suite, though.
Diffstat (limited to 'tests/autoeol-input.txt')
-rw-r--r-- | tests/autoeol-input.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/autoeol-input.txt b/tests/autoeol-input.txt index 237e7d1..705845d 100644 --- a/tests/autoeol-input.txt +++ b/tests/autoeol-input.txt @@ -1,4 +1,4 @@ -Hello -world
FOO -BAR
\ No newline at end of file +BAR +Здравствуй +мир
\ No newline at end of file |