From a76c15356bf2359336a8e7a4b89182157bd13953 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Thu, 19 Feb 2009 14:03:43 +0100 Subject: [PATCH] fusion: Uninstall assembly used to check for presence of .NET runtime. --- dlls/fusion/tests/asmcache.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/fusion/tests/asmcache.c b/dlls/fusion/tests/asmcache.c index db4856acf0c..295a2c4565c 100644 --- a/dlls/fusion/tests/asmcache.c +++ b/dlls/fusion/tests/asmcache.c @@ -840,6 +840,7 @@ static BOOL check_dotnet20(void) IAssemblyCache *cache; HRESULT hr; BOOL ret = FALSE; + ULONG disp; static const WCHAR winedll[] = {'w','i','n','e','.','d','l','l',0}; @@ -859,6 +860,7 @@ static BOOL check_dotnet20(void) ok(0, "Expected S_OK, got %08x\n", hr); DeleteFileA("wine.dll"); + IAssemblyCache_UninstallAssembly(cache, 0, winedll, NULL, &disp); IAssemblyCache_Release(cache); return ret; } -- 2.11.4.GIT