[前][次][番号順一覧][スレッド一覧]

ruby-changes:6506

From: usa <ko1@a...>
Date: Fri, 11 Jul 2008 14:43:21 +0900 (JST)
Subject: [ruby-changes:6506] Ruby:r18022 (trunk): * win32/win32.c (CreateChild): the measures for Vista is no longer

usa	2008-07-11 14:43:03 +0900 (Fri, 11 Jul 2008)

  New Revision: 18022

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18022

  Log:
    * win32/win32.c (CreateChild): the measures for Vista is no longer
      unnecessary.
    

  Modified files:
    trunk/ChangeLog
    trunk/win32/win32.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 18021)
+++ ChangeLog	(revision 18022)
@@ -1,3 +1,8 @@
+Fri Jul 11 14:39:49 2008  NAKAMURA Usaku  <usa@r...>
+
+	* win32/win32.c (CreateChild): the measures for Vista is no longer
+	  unnecessary.
+
 Fri Jul 11 06:16:26 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* common.mk (process.o): depends on util.h.
Index: win32/win32.c
===================================================================
--- win32/win32.c	(revision 18021)
+++ win32/win32.c	(revision 18022)
@@ -894,7 +894,7 @@
     if (!psa) {
 	sa.nLength              = sizeof (SECURITY_ATTRIBUTES);
 	sa.lpSecurityDescriptor = NULL;
-	sa.bInheritHandle       = IsWinNT() && rb_w32_osver() > 5 ? FALSE : TRUE;
+	sa.bInheritHandle       = TRUE;
 	psa = &sa;
     }
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]