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 <[email protected]>
---
net/unix/af_unix.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index 0b80634..7d2e4f8 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -2212,7 +2212,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)
--
1.5.6.3
From: Jianjun Kong <[email protected]>
Date: Sat, 1 Nov 2008 18:18:35 +0800
> 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 <[email protected]>
Applied, thank you.