Commit 6d1f9b03 authored by Alexandre Julliard's avatar Alexandre Julliard

Ignore "U " in nm -u output.

parent 303d9368
......@@ -661,7 +661,9 @@ void read_undef_symbols( char **argv )
char *p = buffer + strlen(buffer) - 1;
if (p < buffer) continue;
if (*p == '\n') *p-- = 0;
p = buffer; while (*p == ' ') p++;
p = buffer;
while (*p == ' ') p++;
if (p[0] == 'U' && p[1] == ' ' && p[2]) p += 2;
add_undef_symbol( p );
}
if ((err = pclose( f ))) fatal_error( "nm -u %s error %d\n", name, err );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment