mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:27:45 +00:00
Kernel: Remove unused fd allocation from Process::sys$connect(..)
This commit is contained in:
parent
9252addf55
commit
d2cee9cbf6
1 changed files with 0 additions and 3 deletions
|
@ -153,9 +153,6 @@ KResultOr<FlatPtr> Process::sys$accept4(Userspace<const Syscall::SC_accept4_para
|
||||||
KResultOr<FlatPtr> Process::sys$connect(int sockfd, Userspace<const sockaddr*> user_address, socklen_t user_address_size)
|
KResultOr<FlatPtr> Process::sys$connect(int sockfd, Userspace<const sockaddr*> user_address, socklen_t user_address_size)
|
||||||
{
|
{
|
||||||
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
||||||
int fd = m_fds.allocate();
|
|
||||||
if (fd < 0)
|
|
||||||
return fd;
|
|
||||||
auto description = fds().file_description(sockfd);
|
auto description = fds().file_description(sockfd);
|
||||||
if (!description)
|
if (!description)
|
||||||
return EBADF;
|
return EBADF;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue