mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
Kernel: Convert Process::get_syscall_path_argument() to KString
This API now returns a KResultOr<NonnullOwnPtr<KString>> and allocation failures should be propagated everywhere nicely. :^)
This commit is contained in:
parent
66f3ec687b
commit
1123af361d
Notes:
sideshowbarker
2024-07-18 17:12:01 +09:00
Author: https://github.com/awesomekling
Commit: 1123af361d
25 changed files with 42 additions and 42 deletions
|
@ -16,6 +16,6 @@ KResultOr<int> Process::sys$mkdir(Userspace<const char*> user_path, size_t path_
|
|||
auto path = get_syscall_path_argument(user_path, path_length);
|
||||
if (path.is_error())
|
||||
return path.error();
|
||||
return VFS::the().mkdir(path.value(), mode & ~umask(), current_directory());
|
||||
return VFS::the().mkdir(path.value()->view(), mode & ~umask(), current_directory());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue