* fhandler_socket.cc (fhandler_socket::dup): Add missing copy operation
on sun_path.
This commit is contained in:
parent
8dcdae34b3
commit
e48947085c
|
@ -1,3 +1,8 @@
|
|||
2002-07-04 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_socket.cc (fhandler_socket::dup): Add missing copy operation
|
||||
on sun_path.
|
||||
|
||||
2002-07-03 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* include/cygwin/version.h: Bump DLL minor number.
|
||||
|
|
|
@ -286,6 +286,8 @@ fhandler_socket::dup (fhandler_base *child)
|
|||
fhandler_socket *fhs = (fhandler_socket *) child;
|
||||
fhs->addr_family = addr_family;
|
||||
fhs->set_io_handle (get_io_handle ());
|
||||
if (get_addr_family () == AF_LOCAL)
|
||||
fhs->set_sun_path (get_sun_path ());
|
||||
|
||||
fhs->fixup_before_fork_exec (GetCurrentProcessId ());
|
||||
if (winsock2_active)
|
||||
|
|
Loading…
Reference in New Issue