mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-12 09:20:36 +00:00
Kernel: Use TRY() in AnonymousVMObject
This commit is contained in:
parent
abb43468dc
commit
3631ebe963
Notes:
sideshowbarker
2024-07-18 04:42:21 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/3631ebe9638
1 changed files with 1 additions and 5 deletions
|
@ -21,11 +21,7 @@ KResultOr<NonnullRefPtr<VMObject>> AnonymousVMObject::try_clone()
|
|||
if (is_purgeable() && is_volatile()) {
|
||||
// If this object is purgeable+volatile, create a new zero-filled purgeable+volatile
|
||||
// object, effectively "pre-purging" it in the child process.
|
||||
auto maybe_clone = try_create_purgeable_with_size(size(), AllocationStrategy::None);
|
||||
if (maybe_clone.is_error())
|
||||
return maybe_clone.error();
|
||||
|
||||
auto clone = maybe_clone.release_value();
|
||||
auto clone = TRY(try_create_purgeable_with_size(size(), AllocationStrategy::None));
|
||||
clone->m_volatile = true;
|
||||
return clone;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue