ID:               26534
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Feedback
+Status:           Closed
 Bug Type:         *General Issues
 Operating System: WinXP
 PHP Version:      5CVS-2003-12-05 (dev)
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.

As of the newest snapshot (20031206-0730) the bug seems to be no more.

BTW Fixing a bug in 16 minutes - isn't that rather close to a record.


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

[2003-12-05 15:23:07] [EMAIL PROTECTED]

I think I just fixed this; can you try the next php5 snapshot? (dated
after this report)

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

[2003-12-05 15:07:49] [EMAIL PROTECTED]

Description:
------------
Something strange has happend stream_get_meta_data() between b1 and
b2!

Doing a stream_get_meta_data() on a tcp_socket stream results in an
Access Violation.

The "Actual Result" says it all...

Reproduce code:
---------------
$host = 'localhost';
$port = 80;

$stream = stream_socket_client($host.':'.$port, $errno, $errstr);

// fwrite($stream, "GET / HTTP/1.1\r\nHost: $host\r\n\r\n");

// echo fread($stream, 10240);

var_dump(stream_get_meta_data($stream));


Expected result:
----------------
PHP Version 5.0.0b1:

array(7) {
  ["stream_type"]=>
  string(10) "tcp_socket"
  ["mode"]=>
  string(2) "r+"
  ["unread_bytes"]=>
  int(0)
  ["seekable"]=>
  bool(false)
  ["timed_out"]=>
  bool(false)
  ["blocked"]=>
  bool(true)
  ["eof"]=>
  bool(true)
}


Actual result:
--------------
PHP Version 5.0.0b2 & 5.0.0b3-dev:

PHP has encountered an Access Violation at 010C80AD


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


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

Reply via email to