mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 02:01:03 +00:00
Bugfix for encoding.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3238 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
422963b224
commit
4f352e2786
1 changed files with 22 additions and 17 deletions
|
@ -1468,10 +1468,13 @@ failure:
|
||||||
{
|
{
|
||||||
[aCoder encodeValueOfObjCType: @encode(unsigned long)
|
[aCoder encodeValueOfObjCType: @encode(unsigned long)
|
||||||
at: &length];
|
at: &length];
|
||||||
|
if (length)
|
||||||
|
{
|
||||||
[aCoder encodeArrayOfObjCType: @encode(unsigned char)
|
[aCoder encodeArrayOfObjCType: @encode(unsigned char)
|
||||||
count: length
|
count: length
|
||||||
at: bytes];
|
at: bytes];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Basic methods */
|
/* Basic methods */
|
||||||
|
|
||||||
|
@ -2218,9 +2221,11 @@ getBytes(void* dst, void* src, unsigned len, unsigned limit, unsigned *pos)
|
||||||
void *b;
|
void *b;
|
||||||
|
|
||||||
[aCoder decodeValueOfObjCType: @encode(unsigned long) at: &l];
|
[aCoder decodeValueOfObjCType: @encode(unsigned long) at: &l];
|
||||||
if (l) {
|
if (l)
|
||||||
|
{
|
||||||
[self initWithCapacity: l];
|
[self initWithCapacity: l];
|
||||||
if (bytes == 0) {
|
if (bytes == 0)
|
||||||
|
{
|
||||||
NSLog(@"[NSMutableDataMalloc -initWithCoder:] unable to allocate %lu bytes", l);
|
NSLog(@"[NSMutableDataMalloc -initWithCoder:] unable to allocate %lu bytes", l);
|
||||||
[self release];
|
[self release];
|
||||||
return nil;
|
return nil;
|
||||||
|
|
Loading…
Reference in a new issue