Monotone-Parent: aeb6c6e374c725f1249d84119e6cc1b7ce8d1f1a

Monotone-Revision: c0c3d56a3486d587b4e272a42efcc42e8a77897e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-10-21T23:44:29
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-10-21 23:44:29 +00:00
parent 6a939a69b1
commit 37d2f449b3
2 changed files with 9 additions and 3 deletions
+6
View File
@@ -1,3 +1,9 @@
2011-10-21 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/plreader.m (PLReaderDumpPListFile): ignore "error" if
the returned property list object is not nil, since "error" might
still be set with GNUstep.
2011-10-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreDraftsMessage.m (-getPrDisplayTo:inMemCtx:)
+3 -3
View File
@@ -153,9 +153,7 @@ PLReaderDumpPListFile (NSString *filename)
mutabilityOption: NSPropertyListImmutable
format: &format
errorDescription: &error];
if (error)
printf ("an error occurred: %s\n", [error UTF8String]);
else
if (d)
{
switch (format)
{
@@ -181,6 +179,8 @@ PLReaderDumpPListFile (NSString *filename)
[d displayWithIndentation: 0];
printf ("\n");
}
else
printf ("an error occurred: %s\n", [error UTF8String]);
}
int main()