mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
The RpcFinally block must always be executed. Otherwise, RPC code will leak allocated buffer memory.
svn path=/trunk/; revision=17313
This commit is contained in:
parent
e9beb0d3eb
commit
7b869f437f
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ typedef long RPC_STATUS;
|
|||
#define RpcExcept(x) } else {
|
||||
#define RpcEndExcept }
|
||||
#define RpcTryFinally if (1) {
|
||||
#define RpcFinally } else {
|
||||
#define RpcFinally } if (1) {
|
||||
#define RpcEndFinally }
|
||||
#define RpcExceptionCode() 0
|
||||
#define RpcAbnormalTermination() AbnormalTermination()
|
||||
|
|
Loading…
Reference in a new issue