dbghelp: Initialize BOOL elements with FALSE instead of 0.
This commit is contained in:
parent
05368de685
commit
2b06143031
|
@ -136,8 +136,8 @@ struct module* module_new(struct process* pcs, const char* name,
|
|||
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;
|
||||
|
|
Loading…
Reference in New Issue