Fixed another memory leak.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5106 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
417a57fabd
commit
c25694f54d
1 changed files with 2 additions and 1 deletions
|
@ -358,7 +358,8 @@ static SegDesc* NewSegDesc (unsigned Name)
|
||||||
|
|
||||||
static void FreeSegDesc (SegDesc* S)
|
static void FreeSegDesc (SegDesc* S)
|
||||||
/* Free a segment descriptor */
|
/* Free a segment descriptor */
|
||||||
{
|
{
|
||||||
|
FreeLineInfo (S->LI);
|
||||||
xfree (S);
|
xfree (S);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue