aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-11 05:43:03 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-11 05:43:03 +0000
commite9db21d9cf4067ec8c0da8d4a32e675b166f37d8 (patch)
tree572766729cf7c56b6b5356f2020b018990330bd9
parentdb093f2d39553fcb8bea0f3feeeff3054169bb14 (diff)
downloadruby-e9db21d9cf4067ec8c0da8d4a32e675b166f37d8.tar.gz
* win32/win32.c (CreateChild): the measures for Vista is no longer
unnecessary. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--win32/win32.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b7582c9cb4..8887318407 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jul 11 14:39:49 2008 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/win32.c (CreateChild): the measures for Vista is no longer
+ unnecessary.
+
Fri Jul 11 06:16:26 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* common.mk (process.o): depends on util.h.
diff --git a/win32/win32.c b/win32/win32.c
index c4521b0e16..f49174de58 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -894,7 +894,7 @@ CreateChild(const char *cmd, const char *prog, SECURITY_ATTRIBUTES *psa,
if (!psa) {
sa.nLength = sizeof (SECURITY_ATTRIBUTES);
sa.lpSecurityDescriptor = NULL;
- sa.bInheritHandle = IsWinNT() && rb_w32_osver() > 5 ? FALSE : TRUE;
+ sa.bInheritHandle = TRUE;
psa = &sa;
}