From c2afdae74cb5928f2eb5912c7ebc2ec869ad0623 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 22 Dec 2010 23:22:01 +0000 Subject: [PATCH] fix typo to avoid null deref: a copy/paste propagated error SVN revision: 55720 --- src/modules/illume-keyboard/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/illume-keyboard/e_mod_main.c b/src/modules/illume-keyboard/e_mod_main.c index 3056c5113..91116e9d5 100644 --- a/src/modules/illume-keyboard/e_mod_main.c +++ b/src/modules/illume-keyboard/e_mod_main.c @@ -81,7 +81,7 @@ _il_kbd_start(void) { const char *dname; - dname = ecore_file_file_get(desktop->orig_path); + dname = ecore_file_file_get(d->orig_path); if (dname) { if (!strcmp(dname, il_kbd_cfg->run_keyboard))