From 50ffcee9df1d933c4dad677f75b17647ae00efeb Mon Sep 17 00:00:00 2001 From: sebastid Date: Wed, 7 Sep 2005 01:15:40 +0000 Subject: [PATCH] All elements must be NULL if we're not going to check. SVN revision: 16632 --- src/bin/e_apps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_apps.c b/src/bin/e_apps.c index 85edd8f75..683990659 100644 --- a/src/bin/e_apps.c +++ b/src/bin/e_apps.c @@ -525,7 +525,7 @@ e_app_window_name_class_title_role_find(const char *name, const char *class, { Evas_List *l; - if (!name && !class) + if ((!name) && (!class) && (!title) && (!role)) return NULL; for (l = _e_apps_list; l; l = l->next)