diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-02-06 13:33:42 +0000 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-02-16 19:49:41 -0500 |
commit | 8260135d4d6cc50d15b459feb6010a989fcb7f5b (patch) | |
tree | 8211a9b8b29b749270c6d71f4faf6073e1a382cb /Userland/Services/AudioServer | |
parent | 1a4dd47d5f691f77f5a11dbb5cdd8d58b2336245 (diff) | |
download | serenity-8260135d4d6cc50d15b459feb6010a989fcb7f5b.zip |
LibCore+Everywhere: Return ErrorOr from ConfigFile factory methods
I've attempted to handle the errors gracefully where it was clear how to
do so, and simple, but a lot of this was just adding
`release_value_but_fixme_should_propagate_errors()` in places.
Diffstat (limited to 'Userland/Services/AudioServer')
-rw-r--r-- | Userland/Services/AudioServer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/AudioServer/main.cpp b/Userland/Services/AudioServer/main.cpp index dd8da23147..b659484659 100644 --- a/Userland/Services/AudioServer/main.cpp +++ b/Userland/Services/AudioServer/main.cpp @@ -15,7 +15,7 @@ ErrorOr<int> serenity_main(Main::Arguments) { TRY(Core::System::pledge("stdio recvfd thread accept cpath rpath wpath unix")); - auto config = Core::ConfigFile::open_for_app("Audio", Core::ConfigFile::AllowWriting::Yes); + auto config = TRY(Core::ConfigFile::open_for_app("Audio", Core::ConfigFile::AllowWriting::Yes)); TRY(Core::System::unveil(config->filename(), "rwc")); TRY(Core::System::unveil("/dev/audio", "wc")); TRY(Core::System::unveil(nullptr, nullptr)); |