History log of /PHP-8.1/main/streams/streams.c (Results 226 – 250 of 403)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 8775a375 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.

# faec3c51 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 ...

# d5c5bb0e 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).

# 9898f907 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).

# 6b85eb58 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)

# 73c1488f 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++

12345678910>>...17