diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2022-06-20 16:16:13 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2022-06-20 16:20:21 +0300 |
commit | baf8a28e6329fdb6cdfb943925849d2cb6347730 (patch) | |
tree | 3fad914da998c7150d7726a30721cab6bbb667a4 | |
parent | 1797ef75adcb4c586d51302f69d33995c3878e95 (diff) |
shell: Fix a typo when adding surface to pending list
As both names are similar this was probably a typo, and instead of using
the iterator for the list we should use the item itself. This was pretty
hard to track as initially everything was set-up alright.
We were still getting empty lists of pending remote surfaces, when I
observed that we were using the iterator rather than the new item we
just create in that function.
Bug-AGL: SPEC-4445
Reported-by: Scott Murray <scott.murray@konsulko.com>
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I77c4c6721eb4a4e3e8e66faa4fa0584b136d322e
-rw-r--r-- | src/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c b/src/shell.c index 33a7a72..dc07c26 100644 --- a/src/shell.c +++ b/src/shell.c @@ -467,7 +467,7 @@ ivi_set_pending_desktop_surface_remote(struct ivi_output *ioutput, if (!p_remote) return; - wl_list_insert(&ivi->remote_pending_apps, &remote->link); + wl_list_insert(&ivi->remote_pending_apps, &p_remote->link); } |