3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-22 14:49:24 +01:00

client: Init variable before usage

Uninitialized 'password' variable used to cause an error when --password
option wasn't avaiable
This commit is contained in:
Tim Kourt 2019-10-18 14:58:03 -07:00 committed by Denis Kenzior
parent ac53239109
commit b35e3525be

View File

@ -240,7 +240,7 @@ static struct l_dbus_message *request_user_password_command_option(
struct l_dbus_message *message)
{
struct l_dbus_message *reply;
const char *password;
const char *password = NULL;
command_option_get(COMMAND_OPTION_PASSWORD, &password);
if (!password)