minor cleanups

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32234 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2011-02-19 19:42:42 +00:00
parent b1eb86d5b4
commit ca854a4b3c
16 changed files with 93 additions and 74 deletions

View file

@ -153,10 +153,10 @@
d = [NSArchiver archivedDataWithRootObject: i];
i = [NSUnarchiver unarchiveObjectWithData: d];
l = [[i methodSignature] methodReturnLength];
b = (void *)objc_malloc(l);
b = (void *)malloc(l);
[i getReturnValue: b];
[inv setReturnValue: b];
objc_free(b);
free(b);
#endif
}