([Invocation -initWithCoder:]): In accordance with Objective C runtime

change, use objc_malloc as a function, not a function pointer.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1716 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1996-09-07 19:56:16 +00:00
parent ec323aa928
commit 7b79f8c611

View file

@ -100,7 +100,7 @@
withName: NULL];
if (return_size)
{
return_value = (*objc_malloc) (return_size);
return_value = objc_malloc (return_size);
[coder decodeValueOfObjCType: return_type
at: return_value
withName: NULL];