From 00e647e16126e2557d23b04db2eace3d57ae20e4 Mon Sep 17 00:00:00 2001 From: emersion Date: Tue, 20 Feb 2018 16:32:29 +0100 Subject: [PATCH] rootston: fix sending frame done to undefined view --- rootston/output.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rootston/output.c b/rootston/output.c index 127fec78..b47d9129 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -535,7 +535,8 @@ damage_finish: // Send frame done events to all surfaces if (output->fullscreen_view != NULL) { - if (wlr_output->fullscreen_surface == output->fullscreen_view->wlr_surface) { + struct roots_view *view = output->fullscreen_view; + if (wlr_output->fullscreen_surface == view->wlr_surface) { // The surface is managed by the wlr_output return; }