Request for test on at least one Windows box

Juan Lang juan.lang at gmail.com
Wed Aug 19 12:27:28 CDT 2009


Hi all, could someone with the ability to build and run a test on
Windows run the attached test for me?  I have a fix for bug 19760, but
I'd just like to double check that it's correct before sending it in
(and I don't have access to Windows at the moment.)

Please copy the list on the reply so not too many people end up doing it.

Cheers,
--Juan
-------------- next part --------------
From 99deb21e2acf6e6f60b78a571a8edf6d2c7c15f2 Mon Sep 17 00:00:00 2001
From: Juan Lang <juan.lang at gmail.com>
Date: Wed, 19 Aug 2009 10:26:43 -0700
Subject: [PATCH 4/4] Test RpcEpRegisterA with NULL Annotation

---
 dlls/rpcrt4/tests/rpc_protseq.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/dlls/rpcrt4/tests/rpc_protseq.c b/dlls/rpcrt4/tests/rpc_protseq.c
index 4837f6a..3acc38b 100644
--- a/dlls/rpcrt4/tests/rpc_protseq.c
+++ b/dlls/rpcrt4/tests/rpc_protseq.c
@@ -157,6 +157,9 @@ static void test_endpoint_mapper(RPC_CSTR protseq, RPC_CSTR address)
     /* register endpoints created in test_RpcServerUseProtseq */
     status = RpcEpRegisterA(IFoo_v0_0_s_ifspec, binding_vector, NULL, annotation);
     ok(status == RPC_S_OK, "%s: RpcEpRegisterA failed with error %u\n", protseq, status);
+    /* reregister the same endpoint with no annotation */
+    status = RpcEpRegisterA(IFoo_v0_0_s_ifspec, binding_vector, NULL, NULL);
+    ok(status == RPC_S_OK, "%s: RpcEpRegisterA failed with error %u\n", protseq, status);
 
     status = RpcStringBindingCompose(NULL, protseq, address,
                                      NULL, NULL, &binding);
-- 
1.6.3.2


More information about the wine-devel mailing list