Skip to content

client: fix segfault when removing uninitialized display->proxy.queue_link

Seunghun Lee requested to merge seunghun.shawn/wayland:fix_segfault into main

The wl_proxy_set_queue() can be called with a wl_display object, which can lead to a segfault due to invoking wl_list_remove with an uninitialized wl_list. This fix addresses this issue by ensuring proper initialization of the display->proxy.queue_link.

Merge request reports