Skip to content

Commit

Permalink
Fix memory management issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapeli committed Sep 24, 2013
1 parent 0268778 commit 6c41376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion INAppStoreWindow.m
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ - (void)_createTitlebarView
_titleBarContainer = container;
self.titleBarView = [[INTitlebarView alloc] initWithFrame:NSZeroRect];
#else
_titleBarContainer = [container autorelease];
_titleBarContainer = container;
self.titleBarView = [[[INTitlebarView alloc] initWithFrame:NSZeroRect] autorelease];
#endif
}
Expand Down

0 comments on commit 6c41376

Please sign in to comment.