From 7b323460a5ccaea2f7db143b0b677d3451586b70 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Thu, 3 Jan 2013 19:35:34 +0000 Subject: [PATCH] Fix missing dealloc. FossilOrigin-Name: 7ee61bb762f44d7363cbc501f4ce9eaf7d9370a8d4c3edc1d701fdf3496f4a38 --- PGResultRow.m | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/PGResultRow.m b/PGResultRow.m index 7540707..710320a 100644 --- a/PGResultRow.m +++ b/PGResultRow.m @@ -156,6 +156,13 @@ convert_type(PGresult *res, int col, OFString *str) return self; } +- (void)dealloc +{ + [result release]; + + [super dealloc]; +} + - (void)reset { pos = 0;