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
1 changed files with 1 additions and 1 deletions

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)