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
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 (
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
pajoye Wed, 19 Aug 2009 18:45:13 +
Revision: http://svn.php.net/viewvc?view=revision&revision=287481
Log:
- fix NEWS
Changed paths:
U php/php-src/branches/PHP_5_3/NEWS
Modified: php/php-src/branches/PHP_5_3/NEWS
===
This is a test message. Please ignore it.
-- Gwynne
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I, uh... had a distracting day yesterday. :)
G
-Original Message-
From: Jani Taskinen [mailto:jani.taski...@iki.fi]
Sent: Wednesday, August 19, 2009 4:29 AM
To: Garrett Serack
Cc: php-cvs@lists.php.net
Subject: Re: [PHP-CVS] svn: /php/php-src/ branches/PHP_5_2/NEWS
branches/PHP_5_2/win32
On 08/18/2009 09:58 PM, Garrett Serack wrote:
garretts Tue, 18 Aug 2009 18:58:33 +
Revision: http://svn.php.net/viewvc?view=revision&revision=287462
Log:
- Fixed bug #28038 (Sent incorrect RCPT TO commands to SMTP server)
Bug: http://bugs.php.net/28038 (Clos
wharmby Wed, 19 Aug 2009 08:39:33 +
Revision: http://svn.php.net/viewvc?view=revision&revision=287475
Log:
New basic test for md5(). Tested on Windows, Linux and Linux 64 bit
Changed paths:
A php/php-src/branches/PHP_5_2/ext/standard/tests/strings/md5_b