diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-09-19 22:33:16 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-09-19 22:39:46 +0200 |
commit | ae9f21b12f97226a2e57440907e7a1c89c683e63 (patch) | |
tree | 06ac75fe019d26c397f38d4db54a19bcd2617670 /app-text/poppler/files | |
parent | dev-util/cmake: Drop 3.18.1 (diff) | |
download | gentoo-ae9f21b12f97226a2e57440907e7a1c89c683e63.tar.gz gentoo-ae9f21b12f97226a2e57440907e7a1c89c683e63.tar.bz2 gentoo-ae9f21b12f97226a2e57440907e7a1c89c683e63.zip |
app-text/poppler: Drop 0.88.0-r1
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-text/poppler/files')
-rw-r--r-- | app-text/poppler/files/poppler-0.88.0-pdfsig-crash.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/app-text/poppler/files/poppler-0.88.0-pdfsig-crash.patch b/app-text/poppler/files/poppler-0.88.0-pdfsig-crash.patch deleted file mode 100644 index 4f29727b6fcf..000000000000 --- a/app-text/poppler/files/poppler-0.88.0-pdfsig-crash.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 5cdb78fde50e3dc16006070b0884dfb6b23d964c Mon Sep 17 00:00:00 2001 -From: Albert Astals Cid <aacid@kde.org> -Date: Thu, 14 May 2020 00:22:33 +0200 -Subject: [PATCH] Fix crash in PDFDoc::getSignatureFields when there's no Forms - at all - ---- - poppler/PDFDoc.cc | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/poppler/PDFDoc.cc b/poppler/PDFDoc.cc -index 572c77be..4b5621fc 100644 ---- a/poppler/PDFDoc.cc -+++ b/poppler/PDFDoc.cc -@@ -613,10 +613,12 @@ static void addSignatureFieldsToVector(FormField *ff, std::vector<FormFieldSigna - - std::vector<FormFieldSignature*> PDFDoc::getSignatureFields() - { --// const int num_pages = getNumPages(); - std::vector<FormFieldSignature*> res; - - const Form *f = catalog->getForm(); -+ if (!f) -+ return res; -+ - const int nRootFields = f->getNumFields(); - for (int i = 0; i < nRootFields; ++i) { - FormField *ff = f->getRootField(i); --- -2.26.2 |