diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-09 12:25:03 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-09 12:25:03 +0000 |
commit | 5419378fa8c8eb7ae679dd1a34edcaeaf0a430ea (patch) | |
tree | 3446b4acdbb6388dce3baa3341cf916e78ff57e5 /Frameworks/PostgresKit/Source/FLXPostgresResult.m | |
parent | bc39e252aed0269716525a39c5f2e034f1d56c19 (diff) | |
download | sequelpro-5419378fa8c8eb7ae679dd1a34edcaeaf0a430ea.tar.gz sequelpro-5419378fa8c8eb7ae679dd1a34edcaeaf0a430ea.tar.bz2 sequelpro-5419378fa8c8eb7ae679dd1a34edcaeaf0a430ea.zip |
Fix static analysis warnings.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresResult.m')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresResult.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresResult.m b/Frameworks/PostgresKit/Source/FLXPostgresResult.m index 2da1a78f..0d9656d0 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresResult.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresResult.m @@ -234,9 +234,9 @@ static NSString *FLXPostgresResultError = @"FLXPostgresResultError"; id handler = _typeHandlers[column]; if (!handler) { - _typeHandlers[column] = [_connection typeHandlerForRemoteType:type]; + handler = [_connection typeHandlerForRemoteType:type]; - handler = _typeHandlers[column]; + _typeHandlers[column] = handler; } return handler; |