mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
af_unix: netns: fix problem of return value
fix problem of return value net/unix/af_unix.c: unix_net_init() when error appears, it should return 'error', not always return 0. Signed-off-by: Jianjun Kong <jianjun@zeuux.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
abdd5a0301
commit
48dcc33e5e
1 changed files with 1 additions and 1 deletions
|
@ -2213,7 +2213,7 @@ static int unix_net_init(struct net *net)
|
|||
#endif
|
||||
error = 0;
|
||||
out:
|
||||
return 0;
|
||||
return error;
|
||||
}
|
||||
|
||||
static void unix_net_exit(struct net *net)
|
||||
|
|
Loading…
Reference in a new issue