1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 00:57:11 +00:00

Fixed another memory leak.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5106 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-02 14:49:33 +00:00
parent 417a57fabd
commit c25694f54d

View File

@ -358,7 +358,8 @@ static SegDesc* NewSegDesc (unsigned Name)
static void FreeSegDesc (SegDesc* S)
/* Free a segment descriptor */
{
{
FreeLineInfo (S->LI);
xfree (S);
}