[PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/TSRM/tsrm_win32.c trunk/TSRM/tsrm_win32.c

2009-09-01 Thread Pierre-Alain Joye
pajoye Tue, 01 Sep 2009 22:51:31 + Revision: http://svn.php.net/viewvc?view=revision&revision=287954 Log: - #27051, create process as impersonated user Bug: http://bugs.php.net/27051 (Assigned) Impersonation with FastCGI does not EXEC process as impersonate

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/TSRM/tsrm_win32.c trunk/TSRM/tsrm_win32.c

2009-08-20 Thread Pierre-Alain Joye
pajoye Thu, 20 Aug 2009 09:03:19 + Revision: http://svn.php.net/viewvc?view=revision&revision=287495 Log: - revert fix for #43327, it breaks system&co functions Bug: http://bugs.php.net/43327 (Closed) wrong return value from mail(), if sendmail_path is wron

Re: [PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/TSRM/tsrm_win32.c trunk/TSRM/tsrm_win32.c

2009-08-19 Thread Garrett Serack
Howdy, There are a couple of issues with making all child processes go thru cmd.exe. Initially, this prevents popen_ex from failing when the actual executable doesn't exist, since "cmd.exe /c c:\foo\bar\xxx.exe" will *always* successfully start a process. This can be seen in bug #43327. Second

Re: [PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/TSRM/tsrm_win32.c trunk/TSRM/tsrm_win32.c

2009-08-19 Thread Stanislav Malyshev
Hi! - cmd = (char*)malloc(strlen(command)+strlen(TWG(comspec))+sizeof(" /c ")+2); - sprintf(cmd, "%s /c \"%s\"", TWG(comspec), command); - if (!CreateProcess(NULL, cmd, &security, &security, security.bInheritHandle, dwCreateFlags, env, cwd, &startup, &process)) { + if (

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/TSRM/tsrm_win32.c trunk/TSRM/tsrm_win32.c

2009-08-19 Thread Pierre-Alain Joye
pajoye Wed, 19 Aug 2009 18:43:46 + Revision: http://svn.php.net/viewvc?view=revision&revision=287480 Log: - fixed #43327, wrong return value from mail(), if sendmail_path is wrong Bug: http://bugs.php.net/43327 (Closed) wrong return value from mail(), if se