Commit 49d2c208 authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: Ignore 16-bit absolute exports when checking for undefined symbols.

parent a82ce660
......@@ -468,7 +468,7 @@ static void check_undefined_exports( DLLSPEC *spec )
for (i = 0; i < spec->nb_entry_points; i++)
{
ORDDEF *odp = &spec->entry_points[i];
if (odp->type == TYPE_STUB) continue;
if (odp->type == TYPE_STUB || odp->type == TYPE_ABS) continue;
if (odp->flags & FLAG_FORWARD) continue;
if (find_name( odp->link_name, &undef_symbols ))
{
......
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