Commit 36dae82a authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

msdaps: Clear *pcPropertySets value in IDBProperties_GetProperties_Stub to fix a test.

parent da9c5237
......@@ -122,6 +122,7 @@ HRESULT __RPC_STUB IDBProperties_GetProperties_Stub(IDBProperties* This, ULONG c
TRACE("(%p, %d, %p, %p, %p, %p)\n", This, cPropertyIDSets, rgPropertyIDSets, pcPropertySets,
prgPropertySets, ppErrorInfoRem);
*pcPropertySets = 0;
*ppErrorInfoRem = NULL;
hr = IDBProperties_GetProperties(This, cPropertyIDSets, rgPropertyIDSets,
pcPropertySets, prgPropertySets);
......
......@@ -165,7 +165,6 @@ static HRESULT WINAPI Test_DBProperties_GetProperties(
DBPROPSET **prgPropertySets)
{
ok(cPropertyIDSets == 0, "Expected cPropertyIDSets to be 0 instead of %d\n", cPropertyIDSets);
todo_wine
ok(*pcPropertySets == 0, "Expected *pcPropertySets to be 0 instead of %d\n", *pcPropertySets);
*pcPropertySets = 1;
*prgPropertySets = CoTaskMemAlloc(sizeof(DBPROPSET));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment