aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/MCPKit
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-09-03 19:51:49 +0000
committerstuconnolly <stuart02@gmail.com>2009-09-03 19:51:49 +0000
commita8bee6d7815cf9431cc53522f74bed648087a674 (patch)
tree54177fe0ac204320ec770ee6fcaedf539715d129 /Frameworks/MCPKit
parent223fb458aa3579d55452ea1c2f7a6e9059befb4a (diff)
downloadsequelpro-a8bee6d7815cf9431cc53522f74bed648087a674.tar.gz
sequelpro-a8bee6d7815cf9431cc53522f74bed648087a674.tar.bz2
sequelpro-a8bee6d7815cf9431cc53522f74bed648087a674.zip
Missing nil terminator.
Diffstat (limited to 'Frameworks/MCPKit')
-rw-r--r--Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m
index ae5e2f59..16d0695b 100644
--- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m
+++ b/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m
@@ -290,7 +290,7 @@ If the identityAttributes of the class description is empty, the entry will alwa
NSUInteger i;
if (! theConnection) {
- return [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInteger:MCPDBReturnNoConnection], @"MCPDBReturnCode"];
+ return [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInteger:MCPDBReturnNoConnection], @"MCPDBReturnCode", nil];
}
if (! [theKeyAttr count]) { // There is no primary key for this object.
[theKeys setObject:[NSNumber numberWithInteger:MCPDBReturnNoKey] forKey:@"MCPDBReturnCode"];