From cdad788d3315a8759c581d768eb4f3a59ee0a739 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 25 Mar 2009 13:27:27 +0100 Subject: [PATCH] winebuild: Skip non-functions when building the undefined exports file. --- tools/winebuild/import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winebuild/import.c b/tools/winebuild/import.c index 1cc36892511..e782c9933f4 100644 --- a/tools/winebuild/import.c +++ b/tools/winebuild/import.c @@ -510,7 +510,7 @@ static char *create_undef_symbols_file( 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; fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(odp->link_name) ); }