1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
2001-11-07  Ulrich Drepper  <drepper@redhat.com>

	* elf/dl-version.c (match_symbol): Optimize error handling for size.
	(_dl_check_map_versions): Likewise.
This commit is contained in:
Ulrich Drepper
2001-11-07 23:21:00 +00:00
parent fb0356b9d6
commit 6ed623f848
3 changed files with 103 additions and 94 deletions

View File

@@ -105,8 +105,8 @@ fixup (
}
else
{
/* We already found the symbol. The module (and therefore its load
address) is also known. */
/* We already found the symbol. The module (and therefore its load
address) is also known. */
value = l->l_addr + sym->st_value;
#ifdef DL_LOOKUP_RETURNS_MAP
result = l;
@@ -198,11 +198,11 @@ profile_fixup (
}
else
{
/* We already found the symbol. The module (and therefore its load
address) is also known. */
value = l->l_addr + sym->st_value;
/* We already found the symbol. The module (and therefore its load
address) is also known. */
value = l->l_addr + sym->st_value;
#ifdef DL_LOOKUP_RETURNS_MAP
result = l;
result = l;
#endif
}
/* And now perhaps the relocation addend. */