about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-09-27 01:55:24 +0000
committerUlrich Drepper <drepper@redhat.com>2005-09-27 01:55:24 +0000
commit4b04154dcdf41d950646e4b7babcc38761c2b9e4 (patch)
treeff82b56cead1a90fa8fcf04bf5784a9947f0ac52
parentb5d839c996d7236ed5788296b4d723e67ec4fdb8 (diff)
downloadglibc-4b04154dcdf41d950646e4b7babcc38761c2b9e4.tar.gz
glibc-4b04154dcdf41d950646e4b7babcc38761c2b9e4.tar.xz
glibc-4b04154dcdf41d950646e4b7babcc38761c2b9e4.zip
[BZ #786]
	* malloc/malloc.c (_int_realloc): Make error message clearer.
-rw-r--r--ChangeLog3
-rw-r--r--malloc/malloc.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bafd427913..f6a34bf5f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-09-26  Ulrich Drepper  <drepper@redhat.com>
 
+	[BZ #786]
+	* malloc/malloc.c (_int_realloc): Make error message clearer.
+
 	[BZ #713]
 	* libio/iofgets.c: Treat N==1 correctly.
 	* libio/iofgets_u.c: Likewise.
diff --git a/malloc/malloc.c b/malloc/malloc.c
index 64050b4266..594d9c4d7a 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -4618,7 +4618,7 @@ _int_realloc(mstate av, Void_t* oldmem, size_t bytes)
   if (__builtin_expect (oldp->size <= 2 * SIZE_SZ, 0)
       || __builtin_expect (oldsize >= av->system_mem, 0))
     {
-      errstr = "realloc(): invalid size";
+      errstr = "realloc(): invalid old size";
       goto errout;
     }