Fix missing dealloc.

FossilOrigin-Name: 7ee61bb762f44d7363cbc501f4ce9eaf7d9370a8d4c3edc1d701fdf3496f4a38
This commit is contained in:
Jonathan Schleifer 2013-01-03 19:35:34 +00:00
parent 74aa01c7cd
commit 7b323460a5

View file

@ -156,6 +156,13 @@ convert_type(PGresult *res, int col, OFString *str)
return self;
}
- (void)dealloc
{
[result release];
[super dealloc];
}
- (void)reset
{
pos = 0;