Commit 9a0b4345 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

oleaut32/tests: Test return of SafeArrayAllocData (Coverity).

parent 0f86ae37
......@@ -324,7 +324,8 @@ static void test_safearray(void)
a->rgsabound[1].cElements = 4;
a->rgsabound[1].lLbound = 1;
a->cbElements = 2;
SafeArrayAllocData(a);
hres = SafeArrayAllocData(a);
ok(hres == S_OK, "SafeArrayAllocData failed with hres %x\n", hres);
indices[0] = 4;
indices[1] = 2;
......
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