]> git.itanic.dy.fi Git - linux-stable/commit
Fix a leak in socket(2) when we fail to allocate a file descriptor.
authorAl Viro <viro@zeniv.linux.org.uk>
Wed, 10 Jan 2018 23:47:05 +0000 (18:47 -0500)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 10 Jan 2018 23:47:05 +0000 (18:47 -0500)
commitce4bb04cae8924792ed92f4af2793b77fc986f0e
treef7869235c4c02ef8314231e1a87fcaf3279d6fdf
parent040ee69226f8a96b7943645d68f41d5d44b5ff7d
Fix a leak in socket(2) when we fail to allocate a file descriptor.

Got broken by "make sock_alloc_file() do sock_release() on failures" -
cleanup after sock_map_fd() failure got pulled all the way into
sock_alloc_file(), but it used to serve the case when sock_map_fd()
failed *before* getting to sock_alloc_file() as well, and that got
lost.  Trivial to fix, fortunately.

Fixes: 8e1611e23579 (make sock_alloc_file() do sock_release() on failures)
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
net/socket.c