From bbbd4180087ad6b0386e411bc1d88e0b99470d65 Mon Sep 17 00:00:00 2001 From: "duna.oh" Date: Thu, 8 May 2025 20:05:44 +0900 Subject: [PATCH] gesture: fix crash when using invalid wl_display Change-Id: I483ac5804f04fd2a22224be93d96b6d6fc396d5f --- src/efl_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/efl_util.c b/src/efl_util.c index 03459b8..7a607d1 100644 --- a/src/efl_util.c +++ b/src/efl_util.c @@ -448,7 +448,7 @@ _wl_init_default_queue(void) wl_registry_add_listener(reg, &_wl_default_queue_reg_listener, NULL); - ret = wl_display_roundtrip(_eflutil.wl.dpy); + ret = wl_display_roundtrip(_eflutil_defaultqueue.wl.dpy); EINA_SAFETY_ON_TRUE_GOTO(ret < 0, fail); wl_registry_destroy(reg); -- 2.34.1