projects
/
platform
/
core
/
uifw
/
e-mod-tizen-wl-textinput.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aff6fad
)
Fix uninitialized variable issue
87/223387/1
author
Jihoon Kim
<jihoon48.kim@samsung.com>
Wed, 29 Jan 2020 08:11:31 +0000
(17:11 +0900)
committer
Jihoon 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
patch
|
blob
|
history
diff --git
a/src/e_mod_input_panel.c
b/src/e_mod_input_panel.c
index
0bd3cb0
..
a77226d
100644
(file)
--- a/
src/e_mod_input_panel.c
+++ b/
src/e_mod_input_panel.c
@@
-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;