From 6fc2507002582a3b1fa14eb17daaccaf233faad5 Mon Sep 17 00:00:00 2001 From: Fred Kiefer Date: Sun, 9 Apr 2006 23:57:36 +0000 Subject: [PATCH] Corrected line forgotten in last patch to property list serialisation. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22776 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/NSPropertyList.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2b23f6d02..5d796847f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-04-10 Fred Kiefer + + * Source/NSPropertyList.m (BinaryPLGenerator - storeCount:): + Corrected line forgotten when applying last patch. + 2006-04-04 Richard Frith-Macdonald * Source/Additions/GSXML.m: ([GSSAXHandler-dealloc]) fix memory leak. diff --git a/Source/NSPropertyList.m b/Source/NSPropertyList.m index 55fde04fb..a96aefa11 100644 --- a/Source/NSPropertyList.m +++ b/Source/NSPropertyList.m @@ -3304,7 +3304,7 @@ GSPropertyListMake(id obj, NSDictionary *loc, BOOL xml, code = 0x11; [dest appendBytes: &code length: 1]; c = count; - NSSwapHostShortToBig(c); + c = NSSwapHostShortToBig(c); [dest appendBytes: &c length: 2]; } else