about summary refs log tree commit diff
path: root/malloc
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-08-19 09:30:22 +0000
committerUlrich Drepper <drepper@redhat.com>2003-08-19 09:30:22 +0000
commit9a3a9dd8d9e03875f865a22de5296274cc18c10e (patch)
tree7680f49cc29b1f7ba4b3f0ebaaafb046f91395b2 /malloc
parent75f2e0d10985cfb8a4dc36613d1aa76952079bd2 (diff)
downloadglibc-9a3a9dd8d9e03875f865a22de5296274cc18c10e.tar.gz
glibc-9a3a9dd8d9e03875f865a22de5296274cc18c10e.tar.xz
glibc-9a3a9dd8d9e03875f865a22de5296274cc18c10e.zip
Update.
	* malloc/malloc.c (_int_free): Add cheap test for some invalid
	block sizes.
Diffstat (limited to 'malloc')
-rw-r--r--malloc/malloc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c
index 5cc3473ae2..55e2cbc0cd 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -4131,6 +4131,13 @@ _int_free(mstate av, Void_t* mem)
     p = mem2chunk(mem);
     size = chunksize(p);
 
+    /* Little security check which won't hurt performance: the
+       allocator never wrapps around at the end of the address space.
+       Therefore we can exclude some size values which might appear
+       here by accident or by "design" from some intruder.  */
+    if ((uintptr_t) p > (uintptr_t) -size)
+      return;
+
     check_inuse_chunk(av, p);
 
     /*