Robert Shearman : rpcrt4: Handle interface pointers in EmbeddedComplexSize.

Alexandre Julliard julliard at wine.codeweavers.com
Thu May 18 03:56:55 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 855535af62b162e2b9b29561a5244b83c073bb31
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=855535af62b162e2b9b29561a5244b83c073bb31

Author: Robert Shearman <rob at codeweavers.com>
Date:   Thu May 18 03:40:06 2006 +0100

rpcrt4: Handle interface pointers in EmbeddedComplexSize.

---

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

diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c
index 9045902..d80e45b 100644
--- a/dlls/rpcrt4/ndr_marshall.c
+++ b/dlls/rpcrt4/ndr_marshall.c
@@ -1543,6 +1543,8 @@ static unsigned long EmbeddedComplexSize
 
     pFormat += *(const SHORT*)pFormat;
     return *(const SHORT*)pFormat;
+  case RPC_FC_IP:
+    return sizeof(void *);
   default:
     FIXME("unhandled embedded type %02x\n", *pFormat);
   }




More information about the wine-cvs mailing list