31 lines
905 B
Diff
31 lines
905 B
Diff
From c1ada668a381e122ee37cb8be7f0637111f63ea7 Mon Sep 17 00:00:00 2001
|
|
From: Florian Weimer <fweimer@redhat.com>
|
|
Date: Tue, 28 Jun 2022 10:40:16 +0200
|
|
Subject: [PATCH] elf: Fix -DNDEBUG warning in _dl_start_args_adjust
|
|
|
|
Conflict:NA
|
|
Reference:https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=c1ada668a381e122ee37cb8be7f0637111f63ea7
|
|
|
|
This is another blocker for building glibc with the default
|
|
-Werror setting and -DNDEBUG.
|
|
---
|
|
elf/rtld.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/elf/rtld.c b/elf/rtld.c
|
|
index f5a3d1968f..cbbaf4a331 100644
|
|
--- a/elf/rtld.c
|
|
+++ b/elf/rtld.c
|
|
@@ -1307,7 +1307,7 @@ _dl_start_args_adjust (int skip_args)
|
|
return;
|
|
|
|
/* Sanity check. */
|
|
- intptr_t argc = (intptr_t) sp[0] - skip_args;
|
|
+ intptr_t argc __attribute__ ((unused)) = (intptr_t) sp[0] - skip_args;
|
|
assert (argc == _dl_argc);
|
|
|
|
/* Adjust argc on stack. */
|
|
--
|
|
2.27.0
|
|
|