Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
	* elf/dl-lookup.c (_dl_lookup_symbol_x): Fix possible NULL pointer
	derefernce in error message.  Pretty printing.
  • Loading branch information
Ulrich Drepper committed Mar 10, 2004
1 parent 96c2836 commit 9363dbb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
@@ -1,5 +1,8 @@
2004-03-09 Ulrich Drepper <drepper@redhat.com>

* elf/dl-lookup.c (_dl_lookup_symbol_x): Fix possible NULL pointer
derefernce in error message. Pretty printing.

* po/nl.po: Update from translation team.

2004-03-08 Andreas Schwab <schwab@suse.de>
Expand Down
7 changes: 3 additions & 4 deletions elf/dl-lookup.c
Expand Up @@ -279,7 +279,7 @@ _dl_lookup_symbol_x (const char *undef_name, struct link_map *undef_map,
&& skip_map == NULL)
{
/* We could find no value for a strong reference. */
const char *reference_name = undef_map ? undef_map->l_name : NULL;
const char *reference_name = undef_map ? undef_map->l_name : "";
const char *versionstr = version ? ", version " : "";
const char *versionname = (version && version->name
? version->name : "");
Expand Down Expand Up @@ -313,14 +313,13 @@ _dl_lookup_symbol_x (const char *undef_name, struct link_map *undef_map,
{
struct sym_val protected_value = { NULL, NULL };

for (scope = symbol_scope; *scope; i = 0, ++scope)
for (scope = symbol_scope; *scope != NULL; i = 0, ++scope)
if (do_lookup_x (undef_name, hash, *ref, &protected_value,
*scope, i, version, flags, skip_map,
ELF_RTYPE_CLASS_PLT) != 0)
break;

if (protected_value.s != NULL
&& protected_value.m != undef_map)
if (protected_value.s != NULL && protected_value.m != undef_map)
{
current_value.s = *ref;
current_value.m = undef_map;
Expand Down

0 comments on commit 9363dbb

Please sign in to comment.