mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-20 12:16:40 +00:00
fix for #35164
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34355 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3b65abba77
commit
70bbf8ce82
2 changed files with 10 additions and 2 deletions
|
@ -2555,8 +2555,11 @@ static NSLock *cached_proxies_gate = nil;
|
|||
|
||||
decoder = aRmc;
|
||||
|
||||
/* Decode the object, (which is always the first argument to a method). */
|
||||
[decoder decodeValueOfObjCType: @encode(id) at: &object];
|
||||
/* Decode the object, (which is always the first argument to a method).
|
||||
* Use the -decodeObject method to ensure that the target of the
|
||||
* invocation is autoreleased and will be deallocated when we finish.
|
||||
*/
|
||||
object = [decoder decodeObject];
|
||||
|
||||
/* Decode the selector, (which is the second argument to a method). */
|
||||
/* xxx @encode(SEL) produces "^v" in gcc 2.5.8. It should be ":" */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue