Module: wine Branch: master Commit: ec11a7b828e4aaab1772a4a2964efee8d505c6d1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ec11a7b828e4aaab1772a4a296...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Jun 24 11:51:07 2008 +0200
oleaut32/tests: Allow UuidCreate to return RPC_S_UUID_LOCAL_ONLY.
---
dlls/oleaut32/tests/typelib.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c index 74a7812..3479c18 100644 --- a/dlls/oleaut32/tests/typelib.c +++ b/dlls/oleaut32/tests/typelib.c @@ -640,7 +640,7 @@ static void test_QueryPathOfRegTypeLib(void) BSTR path;
status = UuidCreate(&uid); - ok(!status, "UuidCreate error %08lx\n", status); + ok(!status || status == RPC_S_UUID_LOCAL_ONLY, "UuidCreate error %08lx\n", status);
StringFromGUID2(&uid, uid_str, 40); /*trace("GUID: %s\n", wine_dbgstr_w(uid_str));*/