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:
e973937
)
Add NULL checker of wl_resource_create
32/99532/1
author
Jihoon Kim
<jihoon48.kim@samsung.com>
Wed, 23 Nov 2016 07:55:35 +0000
(16:55 +0900)
committer
Jihoon Kim
<jihoon48.kim@samsung.com>
Wed, 23 Nov 2016 07:55:35 +0000
(16:55 +0900)
Change-Id: I2902813072ea64e6bba140f80c57a5fa14124b55
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
src/e_mod_main.c
patch
|
blob
|
history
diff --git
a/src/e_mod_main.c
b/src/e_mod_main.c
index d79fdf8d120b4dad62a1bcd440b7250e9c28d97a..e0ce1574f50527e4736a079fa9986eefe0371145 100644
(file)
--- a/
src/e_mod_main.c
+++ b/
src/e_mod_main.c
@@
-1054,7
+1054,8
@@
_e_text_input_cb_activate(struct wl_client *client, struct wl_resource *resource
context->input_method = input_method;
input_method->context = context;
- wl_input_method_send_activate(input_method->resource, context->resource, text_input->id);
+ if (context->resource)
+ wl_input_method_send_activate(input_method->resource, context->resource, text_input->id);
}
#ifdef _TV