Module: wine Branch: master Commit: e9ef9911d0f348f4af34dd517e3fabc3276ff333 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e9ef9911d0f348f4af34dd517e...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Mar 24 11:50:13 2009 +0100
winebuild: Make sure main module is properly initialized.
---
tools/winebuild/utils.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/tools/winebuild/utils.c b/tools/winebuild/utils.c index 3a29a4b..ffe44ec 100644 --- a/tools/winebuild/utils.c +++ b/tools/winebuild/utils.c @@ -465,6 +465,7 @@ DLLSPEC *alloc_dll_spec(void) spec->file_name = NULL; spec->dll_name = NULL; spec->init_func = NULL; + spec->main_module = NULL; spec->type = SPEC_WIN32; spec->base = MAX_ORDINALS; spec->limit = 0;