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 | 862f1e8c450f143fb8997247930e40ce35542f7e (patch) | |
tree | dc9da2dd96b3b3a0bc62133da2a70188b504345a /win32 | |
parent | 7f4b70e84f0fa82ed60a1dd5557878f17ac076ae (diff) | |
download | perl-862f1e8c450f143fb8997247930e40ce35542f7e.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 */ |