31 lines
994 B
Diff
31 lines
994 B
Diff
|
From 460a2bb54d8377586dff6d561646f3929c71370d Mon Sep 17 00:00:00 2001
|
||
|
From: Roman Genkhel <roman.genhel@lge.com>
|
||
|
Date: Thu, 12 Nov 2020 12:21:51 +0300
|
||
|
Subject: [PATCH 45/52] Check pointer for null before use in ASSERT
|
||
|
|
||
|
Task-number: QTBUG-85195
|
||
|
Change-Id: I331e54f6e58aa9d536351a55223610c60b3cb414
|
||
|
Reviewed-by: David Edmundson <davidedmundson@kde.org>
|
||
|
(cherry picked from commit e235e8ddb1fc3cc5ab3b70b1fb285770b2c8c9ca)
|
||
|
---
|
||
|
src/client/qwaylandwindow.cpp | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/client/qwaylandwindow.cpp b/src/client/qwaylandwindow.cpp
|
||
|
index 7de19a74..ac01dc05 100644
|
||
|
--- a/src/client/qwaylandwindow.cpp
|
||
|
+++ b/src/client/qwaylandwindow.cpp
|
||
|
@@ -552,8 +552,8 @@ void QWaylandWindow::sendRecursiveExposeEvent()
|
||
|
|
||
|
void QWaylandWindow::attach(QWaylandBuffer *buffer, int x, int y)
|
||
|
{
|
||
|
- Q_ASSERT(!buffer->committed());
|
||
|
if (buffer) {
|
||
|
+ Q_ASSERT(!buffer->committed());
|
||
|
handleUpdate();
|
||
|
buffer->setBusy();
|
||
|
|
||
|
--
|
||
|
2.35.1
|
||
|
|