Skip to content

Commit daae73a

Browse files
committed
Merge pull request #163 from greay/fixes
Fix for submodules display & graphing memory leak
2 parents d37f322 + e07911c commit daae73a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

PBGraphCellInfo.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ - (id)initWithPosition:(int)p andLines:(struct PBGitGraphLine *)l
2121
return self;
2222
}
2323

24+
- (void)dealloc
25+
{
26+
free(lines);
27+
}
28+
2429
- (void)setLines:(struct PBGitGraphLine *)l
2530
{
2631
free(lines);

0 commit comments

Comments
 (0)