From ae9acb0d54199ec090e348ebb05ede29b62dbe1d Mon Sep 17 00:00:00 2001 From: Hannes Janetzek Date: Fri, 23 Apr 2010 21:18:23 +0000 Subject: [PATCH] 'everything' fix segv SVN revision: 48258 --- src/modules/everything/evry_view_plugin_tabs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/everything/evry_view_plugin_tabs.c b/src/modules/everything/evry_view_plugin_tabs.c index bcebee2b5..36a6375a0 100644 --- a/src/modules/everything/evry_view_plugin_tabs.c +++ b/src/modules/everything/evry_view_plugin_tabs.c @@ -286,6 +286,8 @@ _tabs_key_down(Tab_View *v, const Ecore_Event_Key *ev) { const char *key = ev->key; + if (!v->state || !v->state->cur_plugins) return 0; + if (!strcmp(key, "Next")) { _plugin_next(v);