D-Bus: Remove useless NULL check from static function

The entry argument cannot be NULL in this static function.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2015-01-01 02:13:27 +02:00
parent 1d12c08847
commit 509618d35b
1 changed files with 0 additions and 2 deletions

View File

@ -951,8 +951,6 @@ static dbus_bool_t _wpa_dbus_dict_entry_get_array(
DBusMessageIter iter_array;
wpa_printf(MSG_MSGDUMP, "%s: array_type %c", __func__, array_type);
if (!entry)
return FALSE;
dbus_message_iter_recurse(iter_dict_val, &iter_array);