diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-15 20:28:29 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-15 20:28:29 +0000 |
commit | 5e30a49b7a4cd903d446302f3a7f4ac685b53f2d (patch) | |
tree | 983ff9bdd3a27a48de6b94d0e70223ea6cb4bc5a /user/okular/CVE-2020-9359.patch | |
parent | 18c6e5665fe1dadc47fad19f3f9629a5f9040b2b (diff) | |
download | packages-5e30a49b7a4cd903d446302f3a7f4ac685b53f2d.tar.gz packages-5e30a49b7a4cd903d446302f3a7f4ac685b53f2d.tar.bz2 packages-5e30a49b7a4cd903d446302f3a7f4ac685b53f2d.tar.xz packages-5e30a49b7a4cd903d446302f3a7f4ac685b53f2d.zip |
user/[KDE Applications]: Bump to 20.04.2
Diffstat (limited to 'user/okular/CVE-2020-9359.patch')
-rw-r--r-- | user/okular/CVE-2020-9359.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/user/okular/CVE-2020-9359.patch b/user/okular/CVE-2020-9359.patch deleted file mode 100644 index 34ff3e2ce..000000000 --- a/user/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.25.2 - |