* dll_init.cc (dll_list::load_after_fork): Fix typo where result of LoadLibrary
was ignored.
This commit is contained in:
parent
4aa3feb899
commit
3efc65f7df
|
@ -1,3 +1,8 @@
|
|||
2003-03-02 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* dll_init.cc (dll_list::load_after_fork): Fix typo where result of
|
||||
LoadLibrary was ignored.
|
||||
|
||||
2003-03-01 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_socket.cc (fhandler_socket::bind): Open and write socket
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue