summaryrefslogtreecommitdiffstats
path: root/src/core/delegated_frame_node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/delegated_frame_node.cpp')
-rw-r--r--src/core/delegated_frame_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/delegated_frame_node.cpp b/src/core/delegated_frame_node.cpp
index 4bc83163f..192109c6d 100644
--- a/src/core/delegated_frame_node.cpp
+++ b/src/core/delegated_frame_node.cpp
@@ -693,7 +693,7 @@ DelegatedFrameNode::DelegatedFrameNode()
#if defined(USE_X11) && !defined(QT_NO_OPENGL)
QOpenGLContext *currentContext = QOpenGLContext::currentContext() ;
QOpenGLContext *sharedContext = qt_gl_global_share_context();
- if (!QOpenGLContext::areSharing(currentContext, sharedContext)) {
+ if (currentContext && sharedContext && !QOpenGLContext::areSharing(currentContext, sharedContext)) {
static bool allowNotSharedContextWarningShown = true;
if (allowNotSharedContextWarningShown) {
allowNotSharedContextWarningShown = false;