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

This commit is contained in:
Austin English 2011-07-25 19:10:41 -07:00 committed by Alexandre Julliard
parent 2a16ae1d06
commit ef7ccb7b07
1 changed files with 1 additions and 0 deletions

View File

@ -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);