ruby-changes:6724
From: nobu <ko1@a...>
Date: Mon, 28 Jul 2008 16:50:45 +0900 (JST)
Subject: [ruby-changes:6724] Ruby:r18240 (trunk): * win32/win32.c (CreateChild, overlapped_socket_io): suppress
nobu 2008-07-28 16:49:56 +0900 (Mon, 28 Jul 2008) New Revision: 18240 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18240 Log: * win32/win32.c (CreateChild, overlapped_socket_io): suppress warnings. Modified files: trunk/ChangeLog trunk/win32/win32.c Index: ChangeLog =================================================================== --- ChangeLog (revision 18239) +++ ChangeLog (revision 18240) @@ -1,3 +1,8 @@ +Mon Jul 28 16:49:47 2008 Nobuyoshi Nakada <nobu@r...> + + * win32/win32.c (CreateChild, overlapped_socket_io): suppress + warnings. + Mon Jul 28 16:06:36 2008 NAKAMURA Usaku <usa@r...> * win32/win32.c (MAXPATHLEN): define before use. Index: win32/win32.c =================================================================== --- win32/win32.c (revision 18239) +++ win32/win32.c (revision 18240) @@ -1021,7 +1021,7 @@ prog = cmd; for (;;) { if (!*prog) { - p = dln_find_exe(cmd, NULL); + p = dln_find_exe_r(cmd, NULL, fbuf, sizeof(fbuf)); break; } if (strchr(".:*?\"/\\", *prog)) { @@ -1038,7 +1038,7 @@ p = ALLOCA_N(char, len + 1); memcpy(p, cmd, len); p[len] = 0; - p = dln_find_exe(p, NULL); + p = dln_find_exe_r(p, NULL, fbuf, sizeof(fbuf)); break; } prog++; @@ -2432,7 +2432,7 @@ int r; int ret; int mode; - int flg; + DWORD flg; WSAOVERLAPPED wol; WSABUF wbuf; int err; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/