diff options
author | MinJeong Kim <minjjj.kim@samsung.com> | 2014-07-29 08:16:14 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2014-08-04 18:01:23 -0400 |
commit | 696fb7041435ef068c28740752d251765714889b (patch) | |
tree | 41eebf94caa78bfd1e0808c1a72467fcaa036284 | |
parent | fed19387f60b7969442e9450ceef9c5341a91e44 (diff) | |
download | enlightenment-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.c | 3 |
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) |