fixed minor memory lead with array inheritance declaration

This commit is contained in:
Justin J. Meza 2011-10-29 09:38:55 -07:00
parent 0a8d6d41c6
commit e306ac5d4b
1 changed files with 1 additions and 0 deletions

View File

@ -783,6 +783,7 @@ void deleteDeclarationStmtNode(DeclarationStmtNode *node)
deleteIdentifierNode(node->target);
deleteExprNode(node->expr);
deleteTypeNode(node->type);
deleteIdentifierNode(node->parent);
free(node);
}