File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / streams / bug54623.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:04 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_3_10, HEAD
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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>