shell: Make KeyringPrompt.cancel() callable from signal handlers
gcr/gnome-keyring don't handle the case where prompt_password_async()/ prompt_confirm_async() return their result from within the function very well (or rather: break badly). Calling gcr_prompt_close() instead is safe, but to avoid these kind of errors in the future, modify shell_keyring_prompt_cancel() to work as expected in this case. https://bugzilla.gnome.org/show_bug.cgi?id=708187
This commit is contained in:
parent
3d5e7bd6f1
commit
a89fd17b8e
@ -771,6 +771,6 @@ shell_keyring_prompt_cancel (ShellKeyringPrompt *self)
|
||||
self->async_result = NULL;
|
||||
self->mode = PROMPTING_NONE;
|
||||
|
||||
g_simple_async_result_complete (res);
|
||||
g_simple_async_result_complete_in_idle (res);
|
||||
g_object_unref (res);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user