modules/everything: Fix dereference before null check

Fixes CID1039817

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-09-05 10:47:53 -04:00
parent ae1c3286ee
commit e9599c2597
1 changed files with 1 additions and 1 deletions

View File

@ -2073,7 +2073,7 @@ _evry_cb_key_down(void *data, int type __UNUSED__, void *event)
}
}
if (!win || !(sel = CUR_SEL))
if (!(sel = CUR_SEL))
goto end;
if (!strcmp(ev->key, "Tab") &&