Peter Oberndorfer : dbghelp: Initialize BOOL elements with FALSE instead of 0.
Module: wine Branch: master Commit: 2b06143031ed09e51d84a4e03fc2aa918a303fe1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2b06143031ed09e51d84a4e03f... Author: Peter Oberndorfer <kumbayo84(a)arcor.de> Date: Mon Nov 6 20:05:38 2006 +0100 dbghelp: Initialize BOOL elements with FALSE instead of 0. --- dlls/dbghelp/module.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/dbghelp/module.c b/dlls/dbghelp/module.c index db725b8..ec3c70c 100644 --- a/dlls/dbghelp/module.c +++ b/dlls/dbghelp/module.c @@ -136,8 +136,8 @@ struct module* module_new(struct process module->module.LineNumbers = FALSE; module->module.GlobalSymbols = FALSE; module->module.TypeInfo = FALSE; - module->module.SourceIndexed = 0; - module->module.Publics = 0; + module->module.SourceIndexed = FALSE; + module->module.Publics = FALSE; module->type = type; module->is_virtual = virtual ? TRUE : FALSE;
participants (1)
-
Alexandre Julliard