Skip to content
Snippets Groups Projects
Commit 37d960fa authored by unidentified's avatar unidentified Committed by Alexandre Julliard
Browse files

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

parent bfbe3b5c
No related branches found
No related tags found
No related merge requests found
......@@ -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" )))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment