1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:07:34 +00:00

LibCore: Use ErrorOr<T> for Core::get_password()

This commit is contained in:
Andreas Kling 2021-11-07 11:24:26 +01:00
parent 801d46d02c
commit e76b21a66f
3 changed files with 11 additions and 13 deletions

View file

@ -35,12 +35,12 @@ int main(int argc, char** argv)
args_parser.parse(argc, argv);
if (interactive_password) {
auto password_or_err = Core::get_password();
if (password_or_err.is_error()) {
warnln("{}", password_or_err.error().string());
auto password_or_error = Core::get_password();
if (password_or_error.is_error()) {
warnln("{}", password_or_error.error());
return 1;
}
password = password_or_err.release_value();
password = password_or_error.release_value();
} else {
auto standard_input = Core::File::standard_input();
password = Core::SecretString::take_ownership(standard_input->read_all());