diff options
author | NeilBrown <neilb@suse.de> | 2006-12-13 03:35:44 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-13 12:05:54 -0500 |
commit | dd08d6ea443abafe9455997d2889719364b8794b (patch) | |
tree | fdf69456d67f20cd384a2f7ff78ea88a5e262615 /net | |
parent | 27d630ece08ae15e35d54201665c247a9fae584c (diff) |
[PATCH] knfsd: Don't ignore kstrdup failure in rpc caches
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/svcauth_unix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index 177f81608cfb..0d1e8fb83b93 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c | |||
@@ -53,6 +53,10 @@ struct auth_domain *unix_domain_find(char *name) | |||
53 | return NULL; | 53 | return NULL; |
54 | kref_init(&new->h.ref); | 54 | kref_init(&new->h.ref); |
55 | new->h.name = kstrdup(name, GFP_KERNEL); | 55 | new->h.name = kstrdup(name, GFP_KERNEL); |
56 | if (new->h.name == NULL) { | ||
57 | kfree(new); | ||
58 | return NULL; | ||
59 | } | ||
56 | new->h.flavour = &svcauth_unix; | 60 | new->h.flavour = &svcauth_unix; |
57 | new->addr_changes = 0; | 61 | new->addr_changes = 0; |
58 | rv = auth_domain_lookup(name, &new->h); | 62 | rv = auth_domain_lookup(name, &new->h); |