* dll_init.cc (dll_list::load_after_fork): Fix typo where result of LoadLibrary

was ignored.
This commit is contained in:
Christopher Faylor
2003-03-02 17:29:47 +00:00
parent 4aa3feb899
commit 3efc65f7df
2 changed files with 6 additions and 1 deletions

View File

@ -310,7 +310,7 @@ dll_list::load_after_fork (HANDLE parent, dll *first)
if (!h)
{
unload = false;
LoadLibrary (d.name);
h = LoadLibrary (d.name);
}
if (!h)
system_printf ("can't reload %s", d.name);