mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix a few leaks
This commit is contained in:
parent
fff13fc7ac
commit
92ef562ebe
1 changed files with 2 additions and 1 deletions
|
@ -320,6 +320,7 @@ equalTypes(NSArray *t1, NSArray *t2)
|
|||
|
||||
- (void) dealloc
|
||||
{
|
||||
[self reset];
|
||||
DESTROY(wordMap);
|
||||
DESTROY(ifStack);
|
||||
DESTROY(declared);
|
||||
|
@ -1680,7 +1681,7 @@ recheck:
|
|||
|
||||
/* We want to be able to parse new comments while retaining the
|
||||
originally parsed comment for the enum/union/struct. */
|
||||
introComment = [comment copy];
|
||||
introComment = AUTORELEASE([comment copy]);
|
||||
DESTROY(comment);
|
||||
|
||||
pos++; /* Skip '{' */
|
||||
|
|
Loading…
Reference in a new issue