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-04 18:01:23 -0400
commit696fb7041435ef068c28740752d251765714889b (patch)
tree41eebf94caa78bfd1e0808c1a72467fcaa036284
parentfed19387f60b7969442e9450ceef9c5341a91e44 (diff)
downloadenlightenment-696fb7041435ef068c28740752d251765714889b.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)