[vte/wip/egmont/bidi: 26/87] crash fix
- From: Egmont Koblinger <egmontkob src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/wip/egmont/bidi: 26/87] crash fix
- Date: Tue, 9 Apr 2019 09:10:43 +0000 (UTC)
commit 2b2e8d306455cbba6ae5f08be94595c11da565ba
Author: Egmont Koblinger <egmont gmail com>
Date: Thu Aug 23 21:58:52 2018 +0200
crash fix
src/bidi.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/bidi.cc b/src/bidi.cc
index 7fb67bae..e1657b88 100644
--- a/src/bidi.cc
+++ b/src/bidi.cc
@@ -231,8 +231,8 @@ long RingView::find_paragraph(long row)
const VteRowData *row_data;
while (row-- > row_stop) {
- if (row == -1)
- return 0;
+ if (row < _vte_ring_delta(m_ring))
+ return row + 1;
row_data = m_ring->index(row);
if (row_data == nullptr || !row_data->attr.soft_wrapped)
return row + 1;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]