e_input_event: initialize variables in event source structure 63/312563/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 11 Jun 2024 11:00:49 +0000 (20:00 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 11 Jun 2024 11:29:40 +0000 (20:29 +0900)
Change-Id: I402283f94d30e5f98b77a6e7c66fa734fe7a2639
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
src/bin/e_input_event.c

index a8e352d..adebc21 100755 (executable)
@@ -56,6 +56,9 @@ e_input_event_source_create()
 {
    E_Input_Event_Source *source = (E_Input_Event_Source *)g_source_new(&_event_source_funcs, sizeof(E_Input_Event_Source));
    source->ev_queue = g_queue_new();
+   source->ev_handler_list = NULL;
+   source->ev_filter_list = NULL;
+   source->data = NULL;
 
    return source;
 }