Rob Shearman : rpcrt4: Remove unreachable code in EmbeddedComplexSize.

Alexandre Julliard julliard at winehq.org
Mon Aug 18 10:47:29 CDT 2008


Module: wine
Branch: master
Commit: 27ae234b04d2d9617bcbc0e3d900b394ccbba349
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=27ae234b04d2d9617bcbc0e3d900b394ccbba349

Author: Rob Shearman <robertshearman at gmail.com>
Date:   Sun Aug 17 18:33:42 2008 +0100

rpcrt4: Remove unreachable code in EmbeddedComplexSize.

RPC_FC_ERROR_STATUS_T has a value of 0x10 and therefore isn't a
possible value of "flags_type & 0xf" in the switch statement.

---

 dlls/rpcrt4/ndr_marshall.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c
index 4f5506c..bda04be 100644
--- a/dlls/rpcrt4/ndr_marshall.c
+++ b/dlls/rpcrt4/ndr_marshall.c
@@ -2584,8 +2584,6 @@ static unsigned long EmbeddedComplexSize(MIDL_STUB_MESSAGE *pStubMsg,
         return sizeof(double);
     case RPC_FC_HYPER:
         return sizeof(ULONGLONG);
-    case RPC_FC_ERROR_STATUS_T:
-        return sizeof(error_status_t);
     case RPC_FC_ENUM16:
         return sizeof(UINT);
     default:




More information about the wine-cvs mailing list