diff options
Diffstat (limited to 'monitor/udisks2/gvfsudisks2volume.c')
-rw-r--r-- | monitor/udisks2/gvfsudisks2volume.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/monitor/udisks2/gvfsudisks2volume.c b/monitor/udisks2/gvfsudisks2volume.c index 5e83c2c8..fac90e5c 100644 --- a/monitor/udisks2/gvfsudisks2volume.c +++ b/monitor/udisks2/gvfsudisks2volume.c @@ -1119,7 +1119,8 @@ luks_delete_passphrase_cb (GObject *source, MountData *data = user_data; GError *error = NULL; - if (secret_password_clear_finish (result, &error)) + secret_password_clear_finish (result, &error); + if (!error) { /* with the bad passphrase out of the way, try again */ g_free (data->passphrase); |