Commit c4c6fcaf authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: Don't check variables for undefined exports.

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