aboutsummaryrefslogtreecommitdiff
path: root/malloc
diff options
context:
space:
mode:
authorJohn David Anglin <danglin@gcc.gnu.org>2024-07-19 10:10:17 -0400
committerJohn David Anglin <danglin@gcc.gnu.org>2024-07-19 10:10:17 -0400
commit8cfa4ecff21adf226984f135aa576dd8063bbba3 (patch)
tree1c624821f2207a588a7316ba6a4e297845a9e416 /malloc
parent91eb62d63887a959e43aafb6fc022a87614dc7c9 (diff)
downloadglibc-8cfa4ecff21adf226984f135aa576dd8063bbba3.zip
glibc-8cfa4ecff21adf226984f135aa576dd8063bbba3.tar.gz
glibc-8cfa4ecff21adf226984f135aa576dd8063bbba3.tar.bz2
Fix usage of _STACK_GROWS_DOWN and _STACK_GROWS_UP defines [BZ 31989]
Signed-off-by: John David Anglin <dave.anglin@bell.net> Reviewed-By: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'malloc')
-rw-r--r--malloc/memusage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/memusage.c b/malloc/memusage.c
index e8ae80d..f80225b 100644
--- a/malloc/memusage.c
+++ b/malloc/memusage.c
@@ -172,7 +172,7 @@ update_data (struct header *result, size_t len, size_t old_len)
start_sp = __thread_stack_pointer ();
uintptr_t sp = __thread_stack_pointer ();
-#ifdef _STACK_GROWS_UP
+#if _STACK_GROWS_UP
/* This can happen in threads where we didn't catch the thread's
stack early enough. */
if (__glibc_unlikely (sp < start_sp))