ID:               49948
 Updated by:       johan...@php.net
 Reported By:      u...@php.net
-Status:           Open
+Status:           Assigned
 Bug Type:         Streams related
 Operating System: Windows
 PHP Version:      5.3SVN-2009-10-21 (snap)
-Assigned To:      
+Assigned To:      pajoye


Previous Comments:
------------------------------------------------------------------------

[2009-10-21 18:13:26] u...@php.net

Description:
------------
Hi,

I am getting "Invalid parameter detected in CRT function
'_get_osfhandle'" when running the below code. 

I have compiled a source code snapshot version of PHP 5.3.2-dev on
Windows. I used VC9 Express and SDK 6.1 . OS is XP Prof. I've run PHP
from within the build tree in the hope it will pick the binaries (dlls,
resource files, whatever there is) I have compiled myself. 

However, I have also seen this warning with yesterdays VC9 non TS
binaries from the windows.php.net on another box. A couple of ext/mysqli
tests fail because of the warning. The affected mysqli API calls is
mysqli_poll(). It makes use of [php_]select() just like the below code.

Reproduce code:
---------------
$stream = stream_socket_client("tcp://193.99.144.80:80", $errno,
$error, $whatever, STREAM_CLIENT_ASYNC_CONNECT |
STREAM_CLIENT_CONNECT);
var_dump($stream);
$read = $write = $except = array($stream);
var_dump(stream_select($read, $write, $except, 1));

Expected result:
----------------
No warning. 

Actual result:
--------------
resource(5) of type (stream)

Warning: Invalid parameter detected in CRT function '_get_osfhandle'
(f:\dd\vctools\crt_bld\self_x86\crt\src\osfinfo.c:314) in
E:\php-sdk\php53dev\vc9\x86\php5.
3-200910211230\Debug_TS\select.php on line 5
int(1)


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=49948&edit=1

Reply via email to