Commit ef7ccb7b authored by Austin English's avatar Austin English Committed by Alexandre Julliard

urlmon/tests: Make sure a return value is used (LLVM/Clang).

parent 2a16ae1d
......@@ -324,6 +324,7 @@ static void test_create(void)
ok(hr == S_OK, "got 0x%08x\n", hr);
hr = CreateBindCtx(0, &bctx);
ok(hr == S_OK, "got 0x%08x\n", hr);
stream = (void*)0xdeadbeef;
hr = IMoniker_BindToStorage(mon, bctx, NULL, &IID_IStream, (void**)&stream);
......
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