Blame SOURCES/qtbase-do-not-load-plugin-from-pwd.patch

5ef420
From bf131e8d2181b3404f5293546ed390999f760404 Mon Sep 17 00:00:00 2001
5ef420
From: Olivier Goffart <ogoffart@woboq.com>
5ef420
Date: Fri, 8 Nov 2019 11:30:40 +0100
5ef420
Subject: Do not load plugin from the $PWD
5ef420
5ef420
I see no reason why this would make sense to look for plugins in the current
5ef420
directory. And when there are plugins there, it may actually be wrong
5ef420
5ef420
Change-Id: I5f5aa168021fedddafce90effde0d5762cd0c4c5
5ef420
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
5ef420
---
5ef420
 src/corelib/plugin/qpluginloader.cpp | 1 -
5ef420
 1 file changed, 1 deletion(-)
5ef420
5ef420
diff --git a/src/corelib/plugin/qpluginloader.cpp b/src/corelib/plugin/qpluginloader.cpp
5ef420
index cadff4f32b..c2443dbdda 100644
5ef420
--- a/src/corelib/plugin/qpluginloader.cpp
5ef420
+++ b/src/corelib/plugin/qpluginloader.cpp
5ef420
@@ -305,7 +305,6 @@ static QString locatePlugin(const QString& fileName)
5ef420
         paths.append(fileName.left(slash)); // don't include the '/'
5ef420
     } else {
5ef420
         paths = QCoreApplication::libraryPaths();
5ef420
-        paths.prepend(QStringLiteral(".")); // search in current dir first
5ef420
     }
5ef420
5ef420
     for (const QString &path : qAsConst(paths)) {
5ef420
--
5ef420
cgit v1.2.1