aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2022-11-07 20:33:28 +0800
committerPo Lu2022-11-07 20:34:14 +0800
commitd30a7c142df2c35f165bad34cc8f778a7389e032 (patch)
tree1a4049b49794eaa6c9d338166196af350c915d81 /src
parentc19ca5eb7f27344ca03fa300a65ec9b33dc7253e (diff)
downloademacs-d30a7c142df2c35f165bad34cc8f778a7389e032.tar.gz
emacs-d30a7c142df2c35f165bad34cc8f778a7389e032.zip
Add missing SAFE_FREE on XI 2.0 servers
* src/xterm.c (xi_populate_device_from_info): Add missing SAFE_FREE.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c1
1 files changed, 1 insertions, 0 deletions
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,
5400 xi_device->valuators = NULL; 5400 xi_device->valuators = NULL;
5401 xi_device->scroll_valuator_count = 0; 5401 xi_device->scroll_valuator_count = 0;
5402 5402
5403 SAFE_FREE ();
5403 return; 5404 return;
5404 } 5405 }
5405 5406