Zebediah Figura : rpcrt4: Correctly handle simple ref pointers in calc_arg_size().

Alexandre Julliard julliard at winehq.org
Fri Oct 12 18:00:41 CDT 2018


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

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Thu Oct 11 11:59:18 2018 -0500

rpcrt4: Correctly handle simple ref pointers in calc_arg_size().

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_stubless.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/rpcrt4/ndr_stubless.c b/dlls/rpcrt4/ndr_stubless.c
index 9e434a5..18ce74d 100644
--- a/dlls/rpcrt4/ndr_stubless.c
+++ b/dlls/rpcrt4/ndr_stubless.c
@@ -156,8 +156,7 @@ static DWORD calc_arg_size(MIDL_STUB_MESSAGE *pStubMsg, PFORMAT_STRING pFormat)
     case FC_RP:
         if (pFormat[1] & FC_SIMPLE_POINTER)
         {
-            FIXME("Simple reference pointer (type %#x).\n", pFormat[2]);
-            size = sizeof(void *);
+            size = 0;
             break;
         }
         size = calc_arg_size(pStubMsg, &pFormat[2] + *(const SHORT*)&pFormat[2]);




More information about the wine-cvs mailing list