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
This commit is contained in:
Fred Kiefer 2006-04-09 23:57:36 +00:00
parent fd6393a3eb
commit 6fc2507002
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-04-10 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSPropertyList.m (BinaryPLGenerator - storeCount:):
Corrected line forgotten when applying last patch.
2006-04-04 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Additions/GSXML.m: ([GSSAXHandler-dealloc]) fix memory leak.

View file

@ -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