mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-08-31 06:35:14 +00:00
Fix crash in markdown preprocessing.
This commit is contained in:
@@ -426,10 +426,11 @@ private:
|
||||
int newlinePosition(const QString &text, int offset) const {
|
||||
const auto length = text.size();
|
||||
if (offset < length) {
|
||||
auto ch = text.data() + offset;
|
||||
for (const auto e = ch + length; ch != e; ++ch) {
|
||||
const auto begin = text.data();
|
||||
const auto end = begin + length;
|
||||
for (auto ch = begin + offset; ch != end; ++ch) {
|
||||
if (IsNewline(*ch)) {
|
||||
return (ch - text.data());
|
||||
return (ch - begin);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user