From d30a7c142df2c35f165bad34cc8f778a7389e032 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Mon, 7 Nov 2022 20:33:28 +0800 Subject: [PATCH] Add missing SAFE_FREE on XI 2.0 servers * src/xterm.c (xi_populate_device_from_info): Add missing SAFE_FREE. --- src/xterm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/xterm.c b/src/xterm.c index 1f14daa39f9..84438e85909 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -5400,6 +5400,7 @@ xi_populate_device_from_info (struct x_display_info *dpyinfo, xi_device->valuators = NULL; xi_device->scroll_valuator_count = 0; + SAFE_FREE (); return; } -- 2.39.2