Skip to content
Snippets Groups Projects
Commit dfc83059 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Don't crash if BindToStorage fails.

parent dbc8f877
No related branches found
No related tags found
No related merge requests found
......@@ -633,6 +633,8 @@ static void test_BindToStorage(void)
hres = IMoniker_BindToStorage(mon, bctx, NULL, &IID_IStream, (void**)&unk);
ok(SUCCEEDED(hres), "IMoniker_BindToStorage failed: %08lx\n", hres);
if (!SUCCEEDED(hres)) return;
if(test_protocol == HTTP_TEST) {
todo_wine {
ok(unk == NULL, "istr should be NULL\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment