aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com>2021-09-14 23:25:51 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2021-12-07 22:54:26 +0000
commitff2f57d7dbfeef565346956be23a65e9b59ba9a3 (patch)
treee7a50997cba9dd3174d3bbfa16c1e4b827808ecd
parent3c3a41eb2b33ba2253eb7439ff6290c414143416 (diff)
Fix crash due to 'window->buffers[0].buffer' NULL pointer.
Bug-AGL: SPEC-4148 Change-Id: I353deeea5ef00c6b69f381becd720d517e5a51df Signed-off-by: Vasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com>
-rw-r--r--app/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.cpp b/app/main.cpp
index 182489e..62ea3a0 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -158,7 +158,7 @@ get_next_buffer(struct window *window)
* the 'old' one and force creation of the buffer with the newer
* dimensions */
if (window->wait_for_configure && window->maximized) {
- if (!window->buffers[0].busy) {
+ if (!window->buffers[0].busy && window->buffers[0].buffer) {
wl_buffer_destroy(window->buffers[0].buffer);
window->buffers[0].buffer = NULL;
window->wait_for_configure = false;