summaryrefslogtreecommitdiffstats
path: root/src/core/web_engine_context.cpp
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@theqtcompany.com>2016-03-30 18:22:21 +0200
committerAlexandru Croitor <alexandru.croitor@theqtcompany.com>2016-04-01 15:08:24 +0000
commitb98d79b561791459dd6bfb0fed5dc7462a1a09a7 (patch)
tree9a1a43746a1db6e9ff114eee39a471dd97c45cfe /src/core/web_engine_context.cpp
parent82900c7b96b2a6fb42fe3841df7685b820edd588 (diff)
Fix crashes due to qputenv being called after Chromium initialization.
The qputenv() call inside gl_surface_qt.cpp, which is executed on a GpuChildThread, can reallocate the process environment structure, and it is possible that at the same time the main thread calls getenv, which will dereference a pointer to the freed environment structure, essentially causing a use-after-free crash. Make sure the qputenv() call happens before Chromium initialization starts, so no thread-race can occur. Change-Id: I4ecbdc8bf2abbe45f7d6c5d2633dc9fe27f51e66 Task-number: QTBUG-52124 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@theqtcompany.com> Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com> (cherry picked from commit 76c61aa1400ef2def204c3732e30e08e40631e8d)
Diffstat (limited to 'src/core/web_engine_context.cpp')
-rw-r--r--src/core/web_engine_context.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/web_engine_context.cpp b/src/core/web_engine_context.cpp
index 8845cedbe..9a96f695e 100644
--- a/src/core/web_engine_context.cpp
+++ b/src/core/web_engine_context.cpp
@@ -209,6 +209,12 @@ WebEngineContext::WebEngineContext()
useEmbeddedSwitches = !appArgs.removeAll(QStringLiteral("--disable-embedded-switches"));
#endif
+#ifdef Q_OS_LINUX
+ // Call qputenv before BrowserMainRunnerImpl::Initialize is called.
+ // http://crbug.com/245466
+ qputenv("force_s3tc_enable", "true");
+#endif
+
#if defined(Q_OS_WIN)
// We must initialize the command line with the UTF-16 arguments vector we got from
// QCoreApplication. CommandLine::Init ignores its arguments on Windows and calls