diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | assert/assert.h | 2 | ||||
-rw-r--r-- | malloc/malloc.c | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 0abea41af6..35922ef76b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2015-11-03 David Kastrup <dak@gnu.org> + + [BZ #18604] + * assert/assert.h (assert): Don't macro-expand failed assertion + expression in error message. + * malloc/malloc.c (assert): Likewise. + 2015-11-03 Joseph Myers <joseph@codesourcery.com> * configure.ac (libc_cv_ld_no_whole_archive): Remove configure diff --git a/assert/assert.h b/assert/assert.h index d04c58cc8a..40b9848c15 100644 --- a/assert/assert.h +++ b/assert/assert.h @@ -85,7 +85,7 @@ __END_DECLS # define assert(expr) \ ((expr) \ ? __ASSERT_VOID_CAST (0) \ - : __assert_fail (__STRING(expr), __FILE__, __LINE__, __ASSERT_FUNCTION)) + : __assert_fail (#expr, __FILE__, __LINE__, __ASSERT_FUNCTION)) # ifdef __USE_GNU # define assert_perror(errnum) \ diff --git a/malloc/malloc.c b/malloc/malloc.c index 35c8863a32..839263efc5 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -283,7 +283,7 @@ # define assert(expr) \ ((expr) \ ? ((void) 0) \ - : __malloc_assert (__STRING (expr), __FILE__, __LINE__, __func__)) + : __malloc_assert (#expr, __FILE__, __LINE__, __func__)) extern const char *__progname; |