Fix uninitialized variable issue 87/223387/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Wed, 29 Jan 2020 08:11:31 +0000 (17:11 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 29 Jan 2020 08:11:31 +0000 (17:11 +0900)
Change-Id: Ife3638d7efee57e753eff6f74b14075898a61d59
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
src/e_mod_input_panel.c

index 0bd3cb0..a77226d 100644 (file)
@@ -1544,8 +1544,8 @@ e_input_panel_floating_position_set(int x, int y)
 {
    int cur_angle;
    E_Client *floating_ec = NULL;
-   E_Input_Panel_Surface *floating_ips;
-   E_Input_Panel_Surface *ips;
+   E_Input_Panel_Surface *floating_ips = NULL;
+   E_Input_Panel_Surface *ips = NULL;
    Eina_List *l;
    Eina_List *l_next;