yy20111011659 / route-me

Automatically exported from code.google.com/p/route-me
0 stars 0 forks source link

possible leak in RMMarker.m #116

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago

route me 0.5 RMMarker.m:163

        self.labelView = [aView retain];  

should be

        self.labelView = aView;  // CNL: the . syntax already retains! it's a setter property

Original issue reported on code.google.com by chris.lu...@gmail.com on 21 Aug 2009 at 6:15