From d86705ece612d63841c2e2cf95b0f17ea7c055b7 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 15 Jun 2003 21:16:11 +0000 Subject: [PATCH] (handle_tool_bar_click): Don't pass uninitialized data to kbd_buffer_store_event. --- src/xdisp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/xdisp.c b/src/xdisp.c index 64bda46c1bf..ca0740e8d0b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -8737,6 +8737,7 @@ handle_tool_bar_click (f, x, y, down_p, modifiers) { Lisp_Object key, frame; struct input_event event; + EVENT_INIT (event); /* Show item in released state. */ show_mouse_face (dpyinfo, DRAW_IMAGE_RAISED); -- 2.39.2