aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/FLXPostgresTypeHandler.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-12 12:19:31 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-12 12:19:31 +0000
commit8b298de8d7ef2c680974b5c5cebb4b0056969984 (patch)
tree6e6721b2e6c5628743e953047549d5b9e909ffa8 /Frameworks/PostgresKit/Source/FLXPostgresTypeHandler.m
parent4bac2aa3a2feb2c7eda3064e070cac005e7fa256 (diff)
downloadsequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.tar.gz
sequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.tar.bz2
sequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.zip
Fix release build warnings.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresTypeHandler.m')
-rw-r--r--Frameworks/PostgresKit/Source/FLXPostgresTypeHandler.m6
1 files changed, 1 insertions, 5 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresTypeHandler.m b/Frameworks/PostgresKit/Source/FLXPostgresTypeHandler.m
index 41903d91..2f232307 100644
--- a/Frameworks/PostgresKit/Source/FLXPostgresTypeHandler.m
+++ b/Frameworks/PostgresKit/Source/FLXPostgresTypeHandler.m
@@ -30,8 +30,6 @@
- (id)initWithConnection:(FLXPostgresConnection *)connection
{
if ((self = [super init])) {
- _type = -1;
- _result = nil;
_connection = [connection retain];
}
@@ -41,9 +39,7 @@
#pragma mark -
- (void)dealloc
-{
- _result = nil;
-
+{
if (_connection) [_connection release], _connection = nil;
[super dealloc];