senojsitruc / wsdl2objc

Automatically exported from code.google.com/p/wsdl2objc
MIT License
0 stars 0 forks source link

Memory Leak #30

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The generated ServiceResponse objects leak ... a dealloc implementation is
required in Binding_M.template for the %«className»Response class:

-(void)dealloc {
    [super dealloc];
    self.headers = nil;
    self.bodyParts = nil;
    self.error = nil;   
}

Original issue reported on code.google.com by theo.mad...@btinternet.com on 5 Sep 2009 at 9:19

GoogleCodeExporter commented 8 years ago
Thanks. Committed in svn rev 95.

Original comment by hasse...@gmail.com on 5 Sep 2009 at 5:06