[PATCH 1/3] rpcrt4: Discriminants can't be int3264.

Zebediah Figura z.figura12 at gmail.com
Sat Oct 13 17:46:42 CDT 2018


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 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;
-- 
2.7.4




More information about the wine-devel mailing list