ObjFW  Check-in [74d5765c1f]

Overview
Comment:Fix missing release in OFXMLElement.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 74d5765c1f09546675f9083fa447023adfc7053f888a64ec46c955146da7e03f
User & Date: js on 2011-04-25 22:39:55
Other Links: manifest | tags
Context
2011-04-25
22:46
Cache the class for exeptions in -[OFXMLElement initWithXMLString:]. check-in: 2e95ed7d11 user: js tags: trunk
22:39
Fix missing release in OFXMLElement. check-in: 74d5765c1f user: js tags: trunk
22:31
Try to autodetect the encoding in +[OFString stringWithContentsOfURL:]. check-in: 1dadc4b4a6 user: js tags: trunk
Changes

Modified src/OFXMLElement.m from [bc99bd017c] to [d730cca964].

751
752
753
754
755
756
757

758
759
760
761
762
763
764
765
766
767
	return ret;
}

- (void)dealloc
{
	[name release];
	[ns release];

	[attributes release];
	[namespaces release];
	[children release];
	[characters release];
	[CDATA release];
	[comment release];

	[super dealloc];
}
@end







>










751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
	return ret;
}

- (void)dealloc
{
	[name release];
	[ns release];
	[defaultNamespace release];
	[attributes release];
	[namespaces release];
	[children release];
	[characters release];
	[CDATA release];
	[comment release];

	[super dealloc];
}
@end