nagyistoce / maccode

Automatically exported from code.google.com/p/maccode
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

Memory leaks #38

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
in Utilities/PSMTabBarControl/source/PSMAquaTabStyle.m:
TruncatingTailParagraphStyle = [[[NSParagraphStyle defaultParagraphStyle] 
mutableCopy] retain];
centeredParagraphStyle = [[[NSParagraphStyle defaultParagraphStyle] 
mutableCopy] retain];

"mutableCopy" already retains, so you are retaining twice, causing a memory leak

Original issue reported on code.google.com by fake.sha...@gmail.com on 20 Jan 2011 at 6:58