mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
fix possibly uninitialised variable
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33341 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
05f8f8f257
commit
59540e5b9f
1 changed files with 3 additions and 3 deletions
|
@ -2493,6 +2493,9 @@ static NSLock *cached_proxies_gate = nil;
|
|||
NSInvocation *inv = nil;
|
||||
unsigned seq;
|
||||
|
||||
/* Save this for later */
|
||||
[aRmc decodeValueOfObjCType: @encode(int) at: &seq];
|
||||
|
||||
/*
|
||||
* Make sure don't let exceptions caused by servicing the client's
|
||||
* request cause us to crash.
|
||||
|
@ -2528,9 +2531,6 @@ static NSLock *cached_proxies_gate = nil;
|
|||
}
|
||||
}
|
||||
|
||||
/* Save this for later */
|
||||
[aRmc decodeValueOfObjCType: @encode(int) at: &seq];
|
||||
|
||||
/*
|
||||
* Get the types that we're using, so that we know
|
||||
* exactly what qualifiers the forwarder used.
|
||||
|
|
Loading…
Reference in a new issue