diff options
author | Bart Ribbers <bribbers@disroot.org> | 2020-04-24 13:45:31 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2020-04-29 12:14:48 +0000 |
commit | 864c859e9deeda2c68e8310550ca3c6d70a28dd7 (patch) | |
tree | 563a4f34e066ef22550ad61b1a57ef73b73a01e7 /community/okular/CVE-2020-9359.patch | |
parent | 8299de333bd41be1fe498d779f960ae216b9b5d7 (diff) | |
download | aports-864c859e9deeda2c68e8310550ca3c6d70a28dd7.tar.bz2 aports-864c859e9deeda2c68e8310550ca3c6d70a28dd7.tar.xz |
community/kde-applications: upgrade to 20.04.0
Diffstat (limited to 'community/okular/CVE-2020-9359.patch')
-rw-r--r-- | community/okular/CVE-2020-9359.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/community/okular/CVE-2020-9359.patch b/community/okular/CVE-2020-9359.patch deleted file mode 100644 index e7d7248762..0000000000 --- a/community/okular/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 - |