From: Marcus Meissner Subject: [PATCH] oleaut32: fixed 64bit crash on tmarshal test Message-Id: <20171103111512.11243-1-marcus@jet.franken.de> Date: Fri, 3 Nov 2017 12:15:12 +0100 Test will fail now, but no longer crash. Signed-off-by: Marcus Meissner --- dlls/oleaut32/tests/tmarshal.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/oleaut32/tests/tmarshal.c b/dlls/oleaut32/tests/tmarshal.c index d2b8dc92d6..f19cbf451b 100644 --- a/dlls/oleaut32/tests/tmarshal.c +++ b/dlls/oleaut32/tests/tmarshal.c @@ -2010,7 +2010,8 @@ static void test_external_connection(void) todo_wine ok(external_connections == 2, "external_connections = %d\n", external_connections); - ITestSecondDisp_Release(second); + if (hres == S_OK) + ITestSecondDisp_Release(second); todo_wine ok(external_connections == 2, "external_connections = %d\n", external_connections); -- 2.14.3