mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
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:
parent
fd6393a3eb
commit
6fc2507002
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue