seoz pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=b242383234753544939443c1483c9b5cd18ffa31
commit b242383234753544939443c1483c9b5cd18ffa31 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Fri Nov 8 08:35:39 2013 +0900 config: fixed dereferencing null pointer issue. This fixes coverity CID 1100654. --- src/bin/config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/config.c b/src/bin/config.c index 98b9e4f..1c93927 100644 --- a/src/bin/config.c +++ b/src/bin/config.c @@ -448,7 +448,8 @@ config_load(const char *key) } } - config->config_key = eina_stringshare_add(key); /* not in eet */ + if (config) + config->config_key = eina_stringshare_add(key); /* not in eet */ return config; } --