Fixed an error: Some of the collections weren't initialized.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4775 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
23b867b7a4
commit
b2321ebdf7
1 changed files with 5 additions and 1 deletions
|
@ -76,8 +76,12 @@ ObjData* NewObjData (void)
|
|||
O->Name = INVALID_STRING_ID;
|
||||
O->LibName = INVALID_STRING_ID;
|
||||
O->MTime = 0;
|
||||
O->Flags = 0;
|
||||
O->Start = 0;
|
||||
O->Flags = 0;
|
||||
O->FileCount = 0;
|
||||
O->Files = EmptyCollection;
|
||||
O->SectionCount = 0;
|
||||
O->Sections = EmptyCollection;
|
||||
O->ExportCount = 0;
|
||||
O->Exports = EmptyCollection;
|
||||
O->ImportCount = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue