projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea84363
)
win: bug fix - add missing NULL checking in _elm_win_translate
author
Jaeun Choi
<jaeun12.choi@samsung.com>
Tue, 20 Dec 2016 05:55:11 +0000
(14:55 +0900)
committer
Wonki Kim
<wonki_.kim@samsung.com>
Mon, 2 Jan 2017 05:37:10 +0000
(14:37 +0900)
_elm_config might not be initialized at the point
@tizen_fix
Change-Id: Ifd31a884f484aaf1a277434fbc5d7818c20efb3f
src/lib/elm_win.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_win.c
b/src/lib/elm_win.c
index 1b23270e5787c130584e7b306256474f82c4e1b2..19bb0bb8763d8c210f79cd1743737aac5bb3f894 100644
(file)
--- a/
src/lib/elm_win.c
+++ b/
src/lib/elm_win.c
@@
-3032,7
+3032,7
@@
_elm_win_translate(void)
/* END */
//TIZEN_ONLY(20161202): Temporary code - Apply mirroring in _elm_win_translate()
- if (_elm_config->language_auto_mirrored)
+ if (_elm_config
&& _elm_config
->language_auto_mirrored)
{
if (!strcmp(E_("default:LTR"), "default:RTL"))
elm_config_mirrored_set(EINA_TRUE);