graphics/poppler: add upstream bugfix

Approved by:	gnome (kwm, implicit)
This commit is contained in:
Tobias C. Berner 2019-07-11 04:11:31 +00:00
parent c8b3df1495
commit 99d295f207
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=506396
2 changed files with 30 additions and 0 deletions

View file

@ -3,6 +3,7 @@
PORTNAME= poppler
DISTVERSION= 0.78.0
PORTREVISION= 1
CATEGORIES= graphics print
MASTER_SITES= https://poppler.freedesktop.org/

View file

@ -0,0 +1,29 @@
From 2d191b49ea074cc69ba4c68a572f26c8bdb55abd Mon Sep 17 00:00:00 2001
From: Albert Astals Cid <aacid@kde.org>
Date: Wed, 10 Jul 2019 01:10:22 +0200
Subject: Fix mistake on 093531cd0d0878b892d92ebc56c26936e5de3712
These i should have been j too
---
poppler/TextOutputDev.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/poppler/TextOutputDev.cc b/poppler/TextOutputDev.cc
index e62e088..645e38f 100644
--- poppler/TextOutputDev.cc
+++ poppler/TextOutputDev.cc
@@ -4791,8 +4791,8 @@ void TextSelectionPainter::endPage()
if (j != begin && sel->word->charPos[j] == sel->word->charPos[j - 1])
continue;
- out->drawChar(state, sel->word->textMat[i].m[4], sel->word->textMat[i].m[5], 0, 0, 0, 0,
- sel->word->charcode[i], 1, nullptr, 0);
+ out->drawChar(state, sel->word->textMat[j].m[4], sel->word->textMat[j].m[5], 0, 0, 0, 0,
+ sel->word->charcode[j], 1, nullptr, 0);
}
out->endString(state);
delete string;
--
cgit v1.1