RE: [PHP-DEV] [PATCH] Custom Streams, fclose stream_close

2006-02-15 Thread Jared Williams
Hi, stream_close can return any value it likes... however, it is ignored and php_userstreamop_close always returns success to the streams layer. This is a bug, but should be simple to fix. (volunteers welcome; I don't have a current cvs checkout). --Wez. This should fix it, I think.

RE: [PHP-DEV] [PATCH] Custom Streams, fclose stream_close

2006-02-15 Thread Derick Rethans
On Wed, 15 Feb 2006, Jared Williams wrote: stream_close can return any value it likes... however, it is ignored and php_userstreamop_close always returns success to the streams layer. This is a bug, but should be simple to fix. (volunteers welcome; I don't have a current cvs

RE: [PHP-DEV] [PATCH] Custom Streams, fclose stream_close

2006-02-15 Thread Jared Williams
stream_close can return any value it likes... however, it is ignored and php_userstreamop_close always returns success to the streams layer. This is a bug, but should be simple to fix. (volunteers welcome; I don't have a current cvs checkout). This should fix it, I