ipc: Fix NULL check stopping main app visibility events from working

This commit is contained in:
Jakob Bornecrantz 2021-06-18 17:23:35 +01:00
parent d4c2feab05
commit e554f9ee02
2 changed files with 3 additions and 2 deletions

View file

@ -2,6 +2,7 @@
- mr.754
- mr.768
- mr.800
- mr.846
---
Now that there is a interface that allows the compositor to support
multi-client rendering use that instead of doing our own rendering.

View file

@ -525,8 +525,8 @@ handle_overlay_client_events(volatile struct ipc_client_state *ics, int active_i
return;
}
// Does this client have a compositor yet?
if (ics->xc) {
// Does this client have a compositor yet, if not return?
if (ics->xc == NULL) {
return;
}