Should process the .dynsym of shared libraries instead of the .stab.

This commit is contained in:
Clemens 2002-01-29 02:58:20 +00:00 committed by Alexandre Julliard
parent bfbe3b5c62
commit 37d960faee
1 changed files with 2 additions and 2 deletions

View File

@ -112,8 +112,8 @@ static void read_exported_symbols( const char *name, struct import *imp )
if (!(ext = strrchr( name, '.' ))) ext = name + strlen(name);
if (!(fullname = open_library( name ))) return;
cmdline = xmalloc( strlen(fullname) + 4 );
sprintf( cmdline, "nm %s", fullname );
cmdline = xmalloc( strlen(fullname) + 7 );
sprintf( cmdline, "nm -D %s", fullname );
free( fullname );
if (!(f = popen( cmdline, "r" )))