mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +00:00
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
@ -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…
x
Reference in New Issue
Block a user