diff options
author | Daniel Zaoui <daniel.zaoui@samsung.com> | 2012-10-29 09:37:43 +0000 |
---|---|---|
committer | Daniel Zaoui <daniel.zaoui@yahoo.com> | 2012-10-29 09:37:43 +0000 |
commit | dbbc30644becb3db88ff74b3fb3799ccc7b76376 (patch) | |
tree | c5eb0cf3403dea8776e834b1da044b3d03c0c2cf /legacy/evas/src | |
parent | 716b093d3e8f23ca16fc0e733d32a03a7efc1f56 (diff) |
Removed check on return parameter NULLity. Calling this function means that the parameter returned is wanted.
Signed-off-by: Daniel Zaoui <daniel.zaoui@samsung.com>
SVN revision: 78607
Diffstat (limited to 'legacy/evas/src')
-rw-r--r-- | legacy/evas/src/lib/canvas/evas_object_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/legacy/evas/src/lib/canvas/evas_object_main.c b/legacy/evas/src/lib/canvas/evas_object_main.c index d639c576a7..8c80eae0c6 100644 --- a/legacy/evas/src/lib/canvas/evas_object_main.c +++ b/legacy/evas/src/lib/canvas/evas_object_main.c | |||
@@ -2067,10 +2067,10 @@ _type_get(Eo *eo_obj EINA_UNUSED, void *_pd, va_list *list) | |||
2067 | const char **type = va_arg(*list, const char **); | 2067 | const char **type = va_arg(*list, const char **); |
2068 | if (obj->delete_me) | 2068 | if (obj->delete_me) |
2069 | { | 2069 | { |
2070 | if (type) *type = ""; | 2070 | *type = ""; |
2071 | return; | 2071 | return; |
2072 | } | 2072 | } |
2073 | if (type) *type = obj->type; | 2073 | *type = obj->type; |
2074 | } | 2074 | } |
2075 | 2075 | ||
2076 | static void | 2076 | static void |