diff options
author | Christoph Lameter <clameter@sgi.com> | 2007-10-16 04:24:46 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:42:53 -0400 |
commit | ef8b4520bd9f8294ffce9abd6158085bde5dc902 (patch) | |
tree | c099a16691ac06208f4d3d65b71e7adaf7361fcd /mm/util.c | |
parent | 0da7e01f5f37f441cccd7c8c0586e06db0981907 (diff) |
Slab allocators: fail if ksize is called with a NULL parameter
A NULL pointer means that the object was not allocated. One cannot
determine the size of an object that has not been allocated. Currently we
return 0 but we really should BUG() on attempts to determine the size of
something nonexistent.
krealloc() interprets NULL to mean a zero sized object. Handle that
separately in krealloc().
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Matt Mackall <mpm@selenic.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/util.c')
-rw-r--r-- | mm/util.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -81,14 +81,16 @@ EXPORT_SYMBOL(kmemdup); | |||
81 | void *krealloc(const void *p, size_t new_size, gfp_t flags) | 81 | void *krealloc(const void *p, size_t new_size, gfp_t flags) |
82 | { | 82 | { |
83 | void *ret; | 83 | void *ret; |
84 | size_t ks; | 84 | size_t ks = 0; |
85 | 85 | ||
86 | if (unlikely(!new_size)) { | 86 | if (unlikely(!new_size)) { |
87 | kfree(p); | 87 | kfree(p); |
88 | return ZERO_SIZE_PTR; | 88 | return ZERO_SIZE_PTR; |
89 | } | 89 | } |
90 | 90 | ||
91 | ks = ksize(p); | 91 | if (p) |
92 | ks = ksize(p); | ||
93 | |||
92 | if (ks >= new_size) | 94 | if (ks >= new_size) |
93 | return (void *)p; | 95 | return (void *)p; |
94 | 96 | ||