mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
LibCore: Automatically create config directories if necessary
If the .config directory (or its children, like lib) was deleted, ConfigFile would crash because it would try to open or create a file in a directory that didn't exist. Therefore, for user and library configs (but not system configs), ensure that the parent directories exist. This allows the user to delete the entire .config folder and all apps still work. (Except those which can't handle missing config. That's a separate issue though.) Fixes #13555 Note: Some changes to pledges and unveils are necessary for this to work. The only one who can recreate .config at the moment is ConfigServer, as others probably don't pledge the user home directory.
This commit is contained in:
parent
46b76f2f55
commit
0fd09b2381
Notes:
sideshowbarker
2024-07-17 12:07:24 +09:00
Author: https://github.com/kleinesfilmroellchen
Commit: 0fd09b2381
Pull-request: https://github.com/SerenityOS/serenity/pull/13603
Issue: https://github.com/SerenityOS/serenity/issues/13555
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/alichraghi ✅
Reviewed-by: https://github.com/awesomekling
4 changed files with 11 additions and 4 deletions
|
@ -16,7 +16,7 @@
|
|||
|
||||
ErrorOr<int> serenity_main(Main::Arguments)
|
||||
{
|
||||
TRY(Core::System::pledge("stdio proc exec rpath"));
|
||||
TRY(Core::System::pledge("stdio proc exec rpath cpath"));
|
||||
auto keyboard_settings_config = TRY(Core::ConfigFile::open_for_app("KeyboardSettings"));
|
||||
|
||||
TRY(Core::System::unveil("/bin/keymap", "x"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue