From f23b358b0d9155895f7d1484d08a974aa0838cc5 Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Sun, 21 Nov 2004 15:39:51 +0000 Subject: [PATCH] Handle a def file where the names of the exported functions are listed without being followed by an equals sign and an alias. --- tools/winebuild/parser.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/winebuild/parser.c b/tools/winebuild/parser.c index ce853433f4d..4452b6cb100 100644 --- a/tools/winebuild/parser.c +++ b/tools/winebuild/parser.c @@ -790,6 +790,10 @@ static int parse_def_export( char *name, DLLSPEC *spec ) remove_stdcall_decoration( odp->link_name ); token = GetToken(1); } + else + { + odp->link_name = xstrdup( name ); + } /* check for optional ordinal */