mirror of
https://github.com/RGBCube/serenity
synced 2025-07-17 08:57:35 +00:00
Kernel: Fix bogus negation of alloc_fd() error in sys$anon_create()
Thanks to Idan for spotting this!
This commit is contained in:
parent
12879184ce
commit
a525d0271c
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ int Process::sys$anon_create(size_t size, int options)
|
||||||
|
|
||||||
int new_fd = alloc_fd();
|
int new_fd = alloc_fd();
|
||||||
if (new_fd < 0)
|
if (new_fd < 0)
|
||||||
return -new_fd;
|
return new_fd;
|
||||||
|
|
||||||
auto vmobject = AnonymousVMObject::create_with_size(size, AllocationStrategy::Reserve);
|
auto vmobject = AnonymousVMObject::create_with_size(size, AllocationStrategy::Reserve);
|
||||||
if (!vmobject)
|
if (!vmobject)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue