diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-18 11:22:59 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-08-04 08:35:11 +0200 |
commit | 6ab7125c11876b5975e1ab6b2cf2a2579c2f7ee9 (patch) | |
tree | 0206a20ffa463e0d6bcc017a425de3c2d0ccb0b3 /kde-apps/okular/files | |
parent | kde-apps/libksane: drop 19.12.3* (diff) | |
download | gentoo-6ab7125c11876b5975e1ab6b2cf2a2579c2f7ee9.tar.gz gentoo-6ab7125c11876b5975e1ab6b2cf2a2579c2f7ee9.tar.bz2 gentoo-6ab7125c11876b5975e1ab6b2cf2a2579c2f7ee9.zip |
kde-apps/okular: drop 19.12.3*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/okular/files')
-rw-r--r-- | kde-apps/okular/files/okular-19.12.3-CVE-2020-9359.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/kde-apps/okular/files/okular-19.12.3-CVE-2020-9359.patch b/kde-apps/okular/files/okular-19.12.3-CVE-2020-9359.patch deleted file mode 100644 index e7d72487621f..000000000000 --- a/kde-apps/okular/files/okular-19.12.3-CVE-2020-9359.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 6a93a033b4f9248b3cd4d04689b8391df754e244 Mon Sep 17 00:00:00 2001 -From: Albert Astals Cid <aacid@kde.org> -Date: Tue, 10 Mar 2020 23:07:24 +0100 -Subject: [PATCH] Document::processAction: If the url points to a binary, don't - run it - ---- - core/document.cpp | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/core/document.cpp b/core/document.cpp -index 3215a1abc..0aa5b6980 100644 ---- a/core/document.cpp -+++ b/core/document.cpp -@@ -4388,7 +4388,8 @@ void Document::processAction( const Action * action ) - { - const QUrl realUrl = KIO::upUrl(d->m_url).resolved(url); - // KRun autodeletes -- new KRun( realUrl, d->m_widget ); -+ KRun *r = new KRun( realUrl, d->m_widget ); -+ r->setRunExecutables(false); - } - } - } break; --- -2.24.1 - |