diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2018-01-11 16:24:38 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2018-01-12 14:58:34 -0500 |
commit | d176fbc8068309182f2924e371b9e52bb309f237 (patch) | |
tree | 4574d79d74e9be812a96082d28f2018d612336ce /src/lib/efl_wl/efl_wl.c | |
parent | ebdfc54defbb433056be2be42c73b56bf0d5e290 (diff) |
efl-wl: return NULL without error when non-extracted parent is found
in efl_wl_extracted_surface_extracted_parent_get()
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl_wl/efl_wl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/efl_wl/efl_wl.c b/src/lib/efl_wl/efl_wl.c index c4a7dc5551..9dc37aa177 100644 --- a/src/lib/efl_wl/efl_wl.c +++ b/src/lib/efl_wl/efl_wl.c | |||
@@ -5628,7 +5628,7 @@ efl_wl_extracted_surface_extracted_parent_get(Evas_Object *surface) | |||
5628 | 5628 | ||
5629 | if (cs->parent) | 5629 | if (cs->parent) |
5630 | { | 5630 | { |
5631 | EINA_SAFETY_ON_FALSE_RETURN_VAL(!cs->parent->extracted, NULL); | 5631 | if (!cs->parent->extracted) return NULL; |
5632 | return cs->parent->obj; | 5632 | return cs->parent->obj; |
5633 | } | 5633 | } |
5634 | return NULL; | 5634 | return NULL; |