* fhandler_socket.cc (fhandler_socket::dup): Add missing copy operation

on sun_path.
This commit is contained in:
Corinna Vinschen 2002-07-04 15:32:34 +00:00
parent 8dcdae34b3
commit e48947085c
2 changed files with 7 additions and 0 deletions

View File

@ -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.

View File

@ -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)