History log of /PHP-5.4/main/streams/streams.c (Results 26 – 50 of 201)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.4.0
# bcefc31e 24-Feb-2012 Gustavo André dos Santos Lopes

- Better fix for #61115.
- Fixed resource leak in stream_socket_client().


# eb1ada85 22-Feb-2012 Gustavo André dos Santos Lopes

- Fixed bug #61115 (stream related segfault on fatal error in
php_stream_context_link).
#run-tests.php is not currently detecting the segfault in the test
#Missing 5.4 merge


Revision tags: php-5.4.0RC8, php-5.3.10, php-5.4.0RC7
# 45a6f8d9 22-Jan-2012 Gustavo André dos Santos Lopes

- Further fix for bug #60455 (stream_get_line misbehaves if EOF is not detected
together with the last read).
- Fixed bug #60817 (stream_get_line() reads from stream even when there is

- Further fix for bug #60455 (stream_get_line misbehaves if EOF is not detected
together with the last read).
- Fixed bug #60817 (stream_get_line() reads from stream even when there is
already sufficient data buffered). stream_get_line() now behaves more like
fgets(), as is documented.
#withheld commit to 5.4

show more ...


Revision tags: php-5.4.0RC6, php-5.3.9, php-5.4.0RC5
# e4ca0ed0 01-Jan-2012 Felipe Pena

- Year++


# 4e198252 01-Jan-2012 Felipe Pena

- Year++


Revision tags: php-5.3.9RC4, php-5.4.0RC4
# 74d2b2f0 11-Dec-2011 Gustavo André dos Santos Lopes

- Fixed bug #60455: stream_get_line misbehaves if EOF is not detected together
with the last read.


# 52c36e60 11-Dec-2011 Gustavo André dos Santos Lopes

- Fixed bug #60455: stream_get_line misbehaves if EOF is not detected together
with the last read.


Revision tags: php-5.3.9RC3, php-5.4.0RC3, php-5.3.9RC2, php-5.4.0RC2, php-5.4.0RC1, php-5.3.9RC1, php-5.4.0beta2, php-5.4.0beta1
# 2acbe4c9 04-Sep-2011 Gustavo André dos Santos Lopes

- Fixed borked refactoring in r307437 (using SUCCESS/FAILURE return instead of
out parameter).
- Fixed signature of php_stream_copy_to_stream_ex to return int in 5.4/trunk
instead of

- Fixed borked refactoring in r307437 (using SUCCESS/FAILURE return instead of
out parameter).
- Fixed signature of php_stream_copy_to_stream_ex to return int in 5.4/trunk
instead of size_t, as the function only returns SUCCESS/FAILURE.

show more ...


Revision tags: yaf-2.1.0, php-5.3.8, php-5.3.7, php-5.3.7RC5, php-5.4.0alpha3, php-5.3.7RC4, php-5.3.7RC3, php-5.4.0alpha2
# 987c8436 05-Jul-2011 Gustavo André dos Santos Lopes

- Fixed bug #52935 (call exit in user_error_handler cause stream relate core).


# afe4570c 05-Jul-2011 Gustavo André dos Santos Lopes

- Fixed bug #52935 (call exit in user_error_handler cause stream relate core).


Revision tags: php-5.3.7RC2, php-5.4.0alpha1, php-5.3.7RC1
# a311dc24 05-Jun-2011 Ilia Alshanetsky

Fixed bug #51997 (SEEK_CUR with 0 value, returns a warning).


# d846d0e8 05-Jun-2011 Ilia Alshanetsky

Fixed bug #51997 (SEEK_CUR with 0 value, returns a warning).


# 9392b9cd 29-May-2011 Hannes Magnusson

Fixed bug #54946 (stream_get_contents infinite loop)


# 3b030ec7 29-May-2011 Hannes Magnusson

Fixed bug #54946 (stream_get_contents infinite loop)


# 8f771683 08-May-2011 Gustavo André dos Santos Lopes

- Merged to 5.3 change in trunk in _php_stream_free. This prevents the segfault
in the testcase for bug #53624. The testcase still has to be fixed though,
because it only works as intende

- Merged to 5.3 change in trunk in _php_stream_free. This prevents the segfault
in the testcase for bug #53624. The testcase still has to be fixed though,
because it only works as intended on Windows.

show more ...


# 02302812 01-May-2011 Gustavo André dos Santos Lopes

- Fixed accidental change.


# 8dfe15a1 01-May-2011 Gustavo André dos Santos Lopes

- Fixed accidental change.


# 6df67ace 01-May-2011 Gustavo André dos Santos Lopes

- Fixed bug #54623 (Segfault when when writing to a persistent socket after
closing a copy of the socket).


# 93f65cde 01-May-2011 Gustavo André dos Santos Lopes

- Fixed bug #54623 (Segfault when when writing to a persistent socket after
closing a copy of the socket).


# 7f293722 21-Mar-2011 Gustavo André dos Santos Lopes

- Make fclose() actually close stream, even when the resource refcount is > 1.
This reverts the fix for bug #24557.
- Make php_stream_free delete the stream from the resources list, not mer

- Make fclose() actually close stream, even when the resource refcount is > 1.
This reverts the fix for bug #24557.
- Make php_stream_free delete the stream from the resources list, not merely
decrease its refcount, as a single call to zend_list_delete does.
#Not worth the risk merging to 5.3. While change #2 may prevent some segfaults,
#a quick and dirty survey to the codebase only showed calls to php_stream_close
#or php_stream_free on streams allocated in the same function, which would have
#refcount == 1. May be reconsidered.

show more ...


Revision tags: php-5.3.6, php-5.3.6RC3, php-5.3.6RC2, php-5.3.6RC1
# c6ccc432 01-Feb-2011 Gustavo André dos Santos Lopes

- Fixed several comparisons that always result in true of false
due to signedness of one of the operands, either by removing
dead code or fixing it.
- Thrown some comments around in p

- Fixed several comparisons that always result in true of false
due to signedness of one of the operands, either by removing
dead code or fixing it.
- Thrown some comments around in php_stream_get_record.
- See http://www.mail-archive.com/internals@lists.php.net/msg49525.html

show more ...


# da0e2a41 01-Feb-2011 Gustavo André dos Santos Lopes

- Fixed several comparisons that always result in true of false
due to signedness of one of the operands, either by removing
dead code or fixing it.
- Thrown some comments around in p

- Fixed several comparisons that always result in true of false
due to signedness of one of the operands, either by removing
dead code or fixing it.
- Thrown some comments around in php_stream_get_record.
- See http://www.mail-archive.com/internals@lists.php.net/msg49525.html

show more ...


Revision tags: php-5.2.17, php-5.3.5
# 927bf09c 01-Jan-2011 Felipe Pena

- Year++


# 0203cc3d 01-Jan-2011 Felipe Pena

- Year++


Revision tags: php-5.2.16, php-5.2.15, php-5.3.4, php-5.2.15RC2, php-5.3.4RC2
# 5a1b7742 19-Nov-2010 Gustavo André dos Santos Lopes

- Reverted unintended change.


123456789