diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-26 21:21:26 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-26 21:21:26 +0400 |
commit | 1434b65731963207a4cc84bd87e6191e34321986 (patch) | |
tree | 07f58551b451675c2f85ebe88e5feb8971577d78 /mm/slob.c | |
parent | 4934ed888e6fe78d9d339471fb870819da911e8b (diff) | |
parent | 76994412f8e824e79a593d6777ec327d85f942b2 (diff) | |
download | linux-1434b65731963207a4cc84bd87e6191e34321986.tar.xz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6:
slub: ksize() abuse checks
slob: Fix to return wrong pointer
Diffstat (limited to 'mm/slob.c')
-rw-r--r-- | mm/slob.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mm/slob.c b/mm/slob.c index 6038cbadf796..a3ad6671adf1 100644 --- a/mm/slob.c +++ b/mm/slob.c @@ -469,8 +469,9 @@ void *__kmalloc_node(size_t size, gfp_t gfp, int node) return ZERO_SIZE_PTR; m = slob_alloc(size + align, gfp, align, node); - if (m) - *m = size; + if (!m) + return NULL; + *m = size; return (void *)m + align; } else { void *ret; |