Fix crash due to 'window->buffers[0].buffer' NULL pointer. 35/26935/3
authorVasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com>
Tue, 14 Sep 2021 21:25:51 +0000 (23:25 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tue, 7 Dec 2021 22:54:26 +0000 (22:54 +0000)
Bug-AGL: SPEC-4148
Change-Id: I353deeea5ef00c6b69f381becd720d517e5a51df
Signed-off-by: Vasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com>
app/main.cpp

index 182489e..62ea3a0 100644 (file)
@@ -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;