mirror of
https://github.com/cc65/cc65.git
synced 2025-01-26 17:36:57 +00:00
Fixed an error: The collection for the line infos hasn't been initialized.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4974 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
804169fb7f
commit
93f8985e47
@ -82,6 +82,7 @@ Assertion* ReadAssertion (FILE* F, struct ObjData* O)
|
||||
Assertion* A = xmalloc (sizeof (Assertion));
|
||||
|
||||
/* Read the fields from the file */
|
||||
A->LineInfos = EmptyCollection;
|
||||
A->Expr = ReadExpr (F, O);
|
||||
A->Action = (AssertAction) ReadVar (F);
|
||||
A->Msg = MakeGlobalStringId (O, ReadVar (F));
|
||||
|
Loading…
x
Reference in New Issue
Block a user