diff options
author | David Kastrup <dak@gnu.org> | 2015-11-03 23:08:54 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2015-11-03 23:26:15 +0100 |
commit | 8ba14398e629c1f63b9c91a59a47a713b3cce8bc (patch) | |
tree | 17e10f1cb7803b5995294d463536f1f14abd32dc /malloc/malloc.c | |
parent | cf09d0b052cbbfbcabc3c3d78d485876b9b81f9c (diff) | |
download | glibc-8ba14398e629c1f63b9c91a59a47a713b3cce8bc.tar.gz glibc-8ba14398e629c1f63b9c91a59a47a713b3cce8bc.tar.xz glibc-8ba14398e629c1f63b9c91a59a47a713b3cce8bc.zip |
Don't macro-expand failed assertion expression [BZ #18604]
[BZ #18604] * assert/assert.h (assert): Don't macro-expand failed assertion expression in error message. * malloc/malloc.c (assert): Likewise.
Diffstat (limited to 'malloc/malloc.c')
-rw-r--r-- | malloc/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |