Browse Source

Fix unused variable warning in dl-startup.c

SEND_STDERR_DEBUG does nothing if __SUPPORT_LD_DEBUG_EARLY__ is not defined
thus causing a warning.

Fixes this:

In file included from ldso/ldso/ldso.c:86:0:
ldso/ldso/dl-startup.c: In function '_dl_start':
ldso/ldso/dl-startup.c:313:13: warning: variable 'strtab' set but not used [-Wunused-but-set-variable]
       char *strtab;
             ^~~~~~

Signed-off-by: Yann Sionneau <ysionneau@kalray.eu>
Yann Sionneau 3 years ago
parent
commit
05c39a2243
1 changed files with 4 additions and 2 deletions
  1. 4 2
      ldso/ldso/dl-startup.c

+ 4 - 2
ldso/ldso/dl-startup.c

@@ -310,11 +310,13 @@ DL_START(unsigned long args)
 					symbol_addr = 0;
 					sym = NULL;
 					if (symtab_index) {
-						char *strtab;
 						ElfW(Sym) *symtab;
+#if !defined(EARLY_STDERR_SPECIAL) && defined(__SUPPORT_LD_DEBUG_EARLY__)
+						char *strtab;
+						strtab = (char *) tpnt->dynamic_info[DT_STRTAB];
+#endif
 
 						symtab = (ElfW(Sym) *) tpnt->dynamic_info[DT_SYMTAB];
-						strtab = (char *) tpnt->dynamic_info[DT_STRTAB];
 						sym = &symtab[symtab_index];
 						symbol_addr = (unsigned long) DL_RELOC_ADDR(load_addr, sym->st_value);
 #if !defined(EARLY_STDERR_SPECIAL)