]> git.eshelyaron.com Git - emacs.git/commitdiff
Prevent crash handling keyboard input from non-frame windows
authorPo Lu <luangruo@yahoo.com>
Sat, 11 Jun 2022 01:19:05 +0000 (09:19 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 11 Jun 2022 01:19:05 +0000 (09:19 +0800)
* src/xterm.c (handle_one_xevent): Use `dpyinfo' to access xkb
desc.  (bug#55890)

src/xterm.c

index ad925755b50c6e101070492f34777e79212c01e3..74716dfe4080ad470e0f18b47f3ae1142fb33096 100644 (file)
@@ -16858,9 +16858,9 @@ handle_one_xevent (struct x_display_info *dpyinfo,
             memset (&compose_status, 0, sizeof (compose_status));
 
 #ifdef HAVE_XKB
-         if (FRAME_DISPLAY_INFO (f)->xkb_desc)
+         if (dpyinfo->xkb_desc)
            {
-             XkbDescRec *rec = FRAME_DISPLAY_INFO (f)->xkb_desc;
+             XkbDescRec *rec = dpyinfo->xkb_desc;
 
              if (rec->map->modmap && rec->map->modmap[xkey.keycode])
                goto done_keysym;
@@ -20109,9 +20109,9 @@ handle_one_xevent (struct x_display_info *dpyinfo,
              state |= x_emacs_to_x_modifiers (dpyinfo, extra_keyboard_modifiers);
 
 #ifdef HAVE_XKB
-             if (FRAME_DISPLAY_INFO (f)->xkb_desc)
+             if (dpyinfo->xkb_desc)
                {
-                 XkbDescRec *rec = FRAME_DISPLAY_INFO (f)->xkb_desc;
+                 XkbDescRec *rec = dpyinfo->xkb_desc;
 
                  if (rec->map->modmap && rec->map->modmap[xev->detail])
                    goto xi_done_keysym;