mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +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
5ccc63c882
commit
464b7ff32f
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-12-24 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/NSConnection.m: Fix retain rount error spotted by
|
||||||
|
<rajendra@teamf1.com> (bug #35164)
|
||||||
|
|
||||||
2011-12-23 Wolfgang Lux <wolfgang.lux@gmail.com>
|
2011-12-23 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||||
|
|
||||||
* Headers/Foundation/NSTextCheckingResult.h:
|
* Headers/Foundation/NSTextCheckingResult.h:
|
||||||
|
|
|
@ -2555,8 +2555,11 @@ static NSLock *cached_proxies_gate = nil;
|
||||||
|
|
||||||
decoder = aRmc;
|
decoder = aRmc;
|
||||||
|
|
||||||
/* Decode the object, (which is always the first argument to a method). */
|
/* Decode the object, (which is always the first argument to a method).
|
||||||
[decoder decodeValueOfObjCType: @encode(id) at: &object];
|
* 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). */
|
/* Decode the selector, (which is the second argument to a method). */
|
||||||
/* xxx @encode(SEL) produces "^v" in gcc 2.5.8. It should be ":" */
|
/* xxx @encode(SEL) produces "^v" in gcc 2.5.8. It should be ":" */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue