mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 17:51:01 +00:00
fix error spotteed by static analyzer
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36520 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8e82768973
commit
a594de1b22
1 changed files with 3 additions and 1 deletions
|
@ -638,7 +638,9 @@ static NSLock *placeholderLock;
|
||||||
[coder decodeArrayOfObjCType: @encode(unsigned char)
|
[coder decodeArrayOfObjCType: @encode(unsigned char)
|
||||||
count: size
|
count: size
|
||||||
at: (void*)serialized];
|
at: (void*)serialized];
|
||||||
d = [d initWithBytesNoCopy: (void*)serialized length: size];
|
d = [d initWithBytesNoCopy: (void*)serialized
|
||||||
|
length: size
|
||||||
|
freeWhenDone: NO];
|
||||||
[d deserializeDataAt: data
|
[d deserializeDataAt: data
|
||||||
ofObjCType: objctype
|
ofObjCType: objctype
|
||||||
atCursor: &cursor
|
atCursor: &cursor
|
||||||
|
|
Loading…
Reference in a new issue