patch-2.1.51 linux/net/socket.c
Next file: linux/CREDITS
Previous file: linux/net/ipv4/fib.c
Back to the patch index
Back to the overall index
- Lines: 38
- Date:
Fri Aug 15 14:59:49 1997
- Orig file:
v2.1.50/linux/net/socket.c
- Orig date:
Sun Jul 20 20:41:59 1997
diff -u --recursive --new-file v2.1.50/linux/net/socket.c linux/net/socket.c
@@ -648,28 +648,25 @@
asmlinkage int sys_socket(int family, int type, int protocol)
{
- int fd, err;
+ int retval;
struct socket *sock;
lock_kernel();
- if ((err = sock_create(family, type, protocol, &sock)) < 0)
+ retval = sock_create(family, type, protocol, &sock);
+ if (retval < 0)
goto out;
- if ((fd = get_fd(sock->inode)) < 0)
- {
+ retval = get_fd(sock->inode);
+ if (retval < 0) {
sock_release(sock);
- err = -EINVAL;
- }
- else
- {
- sock->file = current->files->fd[fd];
- err = fd;
+ goto out;
}
+ sock->file = current->files->fd[retval];
out:
unlock_kernel();
- return err;
+ return retval;
}
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov