aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/PGPostgresTypeDateTimeHandler.m
diff options
context:
space:
mode:
authorStuart Connolly <stuart02@gmail.com>2014-01-26 14:50:33 +0000
committerStuart Connolly <stuart02@gmail.com>2014-01-26 14:50:33 +0000
commit96872fc9563c747ef66a1535a8db8b07439daa13 (patch)
tree4ccdace873f84cfabb3365c0bfd268199f4df3a0 /Frameworks/PostgresKit/Source/PGPostgresTypeDateTimeHandler.m
parent449700e91b25ca4324d221f92c39dc064721f4ea (diff)
downloadsequelpro-96872fc9563c747ef66a1535a8db8b07439daa13.tar.gz
sequelpro-96872fc9563c747ef66a1535a8db8b07439daa13.tar.bz2
sequelpro-96872fc9563c747ef66a1535a8db8b07439daa13.zip
Fix PostgresKit memory leaks.
Diffstat (limited to 'Frameworks/PostgresKit/Source/PGPostgresTypeDateTimeHandler.m')
-rw-r--r--Frameworks/PostgresKit/Source/PGPostgresTypeDateTimeHandler.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PostgresKit/Source/PGPostgresTypeDateTimeHandler.m b/Frameworks/PostgresKit/Source/PGPostgresTypeDateTimeHandler.m
index eb206587..cb09176e 100644
--- a/Frameworks/PostgresKit/Source/PGPostgresTypeDateTimeHandler.m
+++ b/Frameworks/PostgresKit/Source/PGPostgresTypeDateTimeHandler.m
@@ -113,7 +113,7 @@ static PGPostgresOid PGPostgresTypeDateTimeTypes[] =
if (!PQgetf(_result, (int)_row, PGPostgresResultValueDate, (int)_column, &date)) return [NSNull null];
- NSDateComponents *components = [[NSDateComponents alloc] init];
+ NSDateComponents *components = [[[NSDateComponents alloc] init] autorelease];
[components setDay:date.mday];
[components setMonth:date.mon + 1]; // Months are indexed from 0
@@ -151,7 +151,7 @@ static PGPostgresOid PGPostgresTypeDateTimeTypes[] =
if (!PQgetf(_result, (int)_row, hasTimeZone ? PGPostgresResultValueTimeTZ : PGPostgresResultValueTime, (int)_column, &pgTime)) return [NSNull null];
- NSDateComponents *components = [[NSDateComponents alloc] init];
+ NSDateComponents *components = [[[NSDateComponents alloc] init] autorelease];
// Default date values; should be ignored
[components setDay:1];