Zebediah Figura : rpcrt4: Discriminants can't be int3264.

Alexandre Julliard julliard at winehq.org
Mon Oct 15 16:15:27 CDT 2018


Module: wine
Branch: master
Commit: 36592505ca45fc31c6bc845df10a6a8f8343de59
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=36592505ca45fc31c6bc845df10a6a8f8343de59

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Sat Oct 13 17:46:42 2018 -0500

rpcrt4: Discriminants can't be int3264.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/rpcrt4/ndr_marshall.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c
index 52e2716..58f0108 100644
--- a/dlls/rpcrt4/ndr_marshall.c
+++ b/dlls/rpcrt4/ndr_marshall.c
@@ -2762,8 +2762,6 @@ static ULONG EmbeddedComplexSize(MIDL_STUB_MESSAGE *pStubMsg,
     case FC_LONG:
     case FC_ULONG:
     case FC_ENUM32:
-    case FC_INT3264:
-    case FC_UINT3264:
         return sizeof(ULONG);
     case FC_FLOAT:
         return sizeof(float);
@@ -5642,9 +5640,6 @@ static ULONG get_discriminant(unsigned char fc, const unsigned char *pMemory)
     case FC_ULONG:
     case FC_ENUM32:
         return *(const ULONG *)pMemory;
-    case FC_INT3264:
-    case FC_UINT3264:
-        return *(const ULONG_PTR *)pMemory;
     default:
         FIXME("Unhandled base type: 0x%02x\n", fc);
         return 0;




More information about the wine-cvs mailing list