summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiep Ha <thiepha@gmail.com>2016-09-21 16:54:09 +0900
committerThiep Ha <thiepha@gmail.com>2016-09-21 17:03:14 +0900
commit3689a803dbfe1297e706d2fbfde239d641652de1 (patch)
tree2a54b9f165bf27e17cc48280ce542f3ba5879d05
parent401706351d38cbfd6fa7e677af387400a888932a (diff)
downloadefl-3689a803dbfe1297e706d2fbfde239d641652de1.tar.gz
elm_config: add null check before usage
-rw-r--r--src/lib/elementary/elm_config.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/elementary/elm_config.c b/src/lib/elementary/elm_config.c
index af8394b8ff..0fe52b80c1 100644
--- a/src/lib/elementary/elm_config.c
+++ b/src/lib/elementary/elm_config.c
@@ -3772,9 +3772,10 @@ _translation_init(void)
* en_/C where translating only parts of the interface make some
* sense).
*/
- _elm_config->translate = !(strcmp (cur_dom, "messages") &&
- !*trans_comment && strncmp (msg_locale, "en_", 3) &&
- strcmp (msg_locale, "C"));
+ if (msg_locale)
+ _elm_config->translate = !(strcmp (cur_dom, "messages") &&
+ !*trans_comment && strncmp (msg_locale, "en_", 3) &&
+ strcmp (msg_locale, "C"));
/* Get RTL orientation from system */
if (_elm_config->translate)
{