diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-09-12 17:24:29 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-09-12 17:24:29 +0000 |
commit | 110920147cd21b79163b2f007b6530543210d7c1 (patch) | |
tree | dc9da2dd96b3b3a0bc62133da2a70188b504345a /win32 | |
parent | 56f3ddf114e4736c2402b7566212cda76436a097 (diff) | |
download | perl-110920147cd21b79163b2f007b6530543210d7c1.tar.gz |
change#6327 didn't quite go all the way to enable USE_SOCKETS_AS_HANDLES
initialization in all the threads on Windows
p4raw-link: @6327 on //depot/perl: 0401f8415cd90e2eed98f1f8939fbc02af4a0c74
p4raw-id: //depot/perl@7066
Diffstat (limited to 'win32')
-rw-r--r-- | win32/win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c index 9cc714f13f..67e8952de7 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -4143,7 +4143,7 @@ Perl_sys_intern_dup(pTHX_ struct interp_intern *src, struct interp_intern *dst) Newz(1313, dst->children, 1, child_tab); dst->pseudo_id = 0; Newz(1313, dst->pseudo_children, 1, child_tab); - dst->thr_intern.Winit_socktype = src->thr_intern.Winit_socktype; + dst->thr_intern.Winit_socktype = 0; } # endif /* USE_ITHREADS */ #endif /* HAVE_INTERP_INTERN */ |