Commit cfe83e80 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

winebuild: Fix import hint value for symbols imported by name.

This fixes incorrect hint values generated by dlltool: instead of the index in the name table, it used the ordinal value, which almost always ends up in a hint lookup failure and a fallback to binary search.
parent 6b977352
......@@ -1902,7 +1902,7 @@ static void build_windows_import_lib( const char *lib_name, DLLSPEC *spec, struc
{
output( "\n\t.section \".idata$6\"\n" );
output( ".L__wine_import_name:\n" );
output( "\t.short %d\n", odp->ordinal );
output( "\t.short %d\n", odp->hint );
output( "\t%s \"%s\"\n", get_asm_string_keyword(), name );
}
......
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