From: Jianjun Kong Date: Sun, 2 Nov 2008 04:37:27 +0000 (-0700) Subject: af_unix: netns: fix problem of return value X-Git-Tag: v2.6.27.9~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a2093552fba5f5e06bd81e413f62f60880dd182;p=thirdparty%2Fkernel%2Fstable.git af_unix: netns: fix problem of return value [ Upstream commit 48dcc33e5e11de0f76b65b113988dbc930d17395 ] 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 Signed-off-by: David S. Miller --- diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index b0785ef0a4759..8e66fe0d8cdd7 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -2230,7 +2230,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)