php-src/ext/standard/tests/streams/bug54623.phpt
Gustavo André dos Santos Lopes 6df67ace20 - Fixed bug #54623 (Segfault when when writing to a persistent socket after
closing a copy of the socket).
2011-05-01 03:57:01 +00:00

18 lines
439 B
PHP

--TEST--
Bug #54623: Segfault when when writing to a persistent socket after closing a copy of the socket
--FILE--
<?php
$sock = pfsockopen('udp://127.0.0.1', '63844');
var_dump((int)$sock);
fwrite($sock, "1");
$sock2 = pfsockopen('udp://127.0.0.1', '63844');
var_dump((int)$sock2);
fwrite($sock2, "2");
fclose($sock2);
fwrite($sock, "3");
--EXPECTF--
int(%d)
int(%d)
Warning: fwrite(): %d is not a valid stream resource in %s on line %d