elementary: Remove logically dead code

In all code paths leading to this goto statement being called,
'iter_array' variable will already be NULL, so checking it's validity
is just logically dead code.

Fixes Coverity CID1357392

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-07-21 13:21:25 -04:00
parent 4309050fec
commit ce2160ab5d
1 changed files with 1 additions and 1 deletions

View File

@ -1158,6 +1158,7 @@ _action_actions_get(const Eldbus_Service_Interface *iface, const Eldbus_Message
{
const char *descr;
char *key;
key = elm_interface_atspi_action_keybinding_get(obj, id);
descr = elm_interface_atspi_action_description_get(obj, id);
descr = descr ? descr : "";
@ -1169,7 +1170,6 @@ _action_actions_get(const Eldbus_Service_Interface *iface, const Eldbus_Message
return ret;
error:
if (iter_array) eldbus_message_iter_container_close(iter, iter_array);
if (ret) eldbus_message_unref(ret);
return NULL;
}