https://git.reactos.org/?p=reactos.git;a=commitdiff;h=e084a7ae83dfa4da15852…
commit e084a7ae83dfa4da15852fbd42beb2dd97011cce
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Tue Mar 13 20:04:34 2018 +0100
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Fri Jan 3 11:32:07 2020 +0100
[SETUP] Don't free a DLL that is still in use by a different thread
---
base/setup/setup/setup.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/base/setup/setup/setup.c b/base/setup/setup/setup.c
index 59e468dda22..308bcfe7cce 100644
--- a/base/setup/setup/setup.c
+++ b/base/setup/setup/setup.c
@@ -45,7 +45,6 @@ RunInstallReactOS(INT argc, WCHAR* argv[])
RetVal = InstallReactOS(argc, argv);
}
- FreeLibrary(hDll);
return RetVal;
}