summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinJeong Kim <minjjj.kim@samsung.com>2014-07-29 08:16:14 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2014-08-13 10:22:52 -0400
commit1f8f85aa662d636ca939255c01c7707cd83b6fc7 (patch)
tree9716bf0bd96c44055515ac26dfd9be5d78da2403
parent75dd143752ec4a2eb58bf01ddd1d9e9fbe59aa22 (diff)
downloadenlightenment-1f8f85aa662d636ca939255c01c7707cd83b6fc7.tar.gz
Remove unwanted NULL check in internal function
Summary: Remove unwanted NULL check in internal function. Reviewers: gwanglim, devilhorns, zmike Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1250
-rw-r--r--src/bin/e_comp_wl_data.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bin/e_comp_wl_data.c b/src/bin/e_comp_wl_data.c
index 4db5da010f..49aa84d0b9 100644
--- a/src/bin/e_comp_wl_data.c
+++ b/src/bin/e_comp_wl_data.c
@@ -7,9 +7,6 @@ _e_comp_wl_data_find_for_client(Eina_List *list, struct wl_client *client)
Eina_List *l;
struct wl_resource *res;
- if ((!list) || (!client))
- return NULL;
-
EINA_LIST_FOREACH(list, l, res)
{
if (wl_resource_get_client(res) == client)