History log of /PHP-8.2/main/streams/streams.c (Results 176 – 200 of 365)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# b976ebad 08-Mar-2012 Gustavo André dos Santos Lopes

- Oops committed old version of the patch in r324020. Fixed. See bug #61253.


# 0169020e 08-Mar-2012 Gustavo André dos Santos Lopes

- Fixed bug #61253: Wrappers opened with errors concurrency problem
#NOTE: There is a very small possibility that this will further break
#extensions that access wrapper->{err_stack, err_coun

- Fixed bug #61253: Wrappers opened with errors concurrency problem
#NOTE: There is a very small possibility that this will further break
#extensions that access wrapper->{err_stack, err_count}. On PECL SVN, rar is the
#only one and it may leak memory after this. I say "further break" because
#extensions that do that are already broken (will segfault) under ZTS, which is
#why this patch is necessary.
#There was what I deem as tacit acceptance from 5.3/5.4 RMs on this.

show more ...


# 7166298d 08-Mar-2012 Gustavo André dos Santos Lopes

- Fixed bug #61253: Wrappers opened with errors concurrency problem
#NOTE: There is a very small possibility that this will further break
#extensions that access wrapper->{err_stack, err_coun

- Fixed bug #61253: Wrappers opened with errors concurrency problem
#NOTE: There is a very small possibility that this will further break
#extensions that access wrapper->{err_stack, err_count}. On PECL SVN, rar is the
#only one and it may leak memory after this. I say "further break" because
#extensions that do that are already broken (will segfault) under ZTS, which is
#why this patch is necessary.
#There was what I deem as tacit acceptance from 5.3/5.4 RMs on this.

show more ...


# f413b372 08-Mar-2012 Gustavo André dos Santos Lopes

- Fixed bug #61253: Wrappers opened with errors concurrency problem
#NOTE: There is a very small possibility that this will further break
#extensions that access wrapper->{err_stack, err_coun

- Fixed bug #61253: Wrappers opened with errors concurrency problem
#NOTE: There is a very small possibility that this will further break
#extensions that access wrapper->{err_stack, err_count}. On PECL SVN, rar is the
#only one and it may leak memory after this. I say "further break" because
#extensions that do that are already broken (will segfault) under ZTS, which is
#why this patch is necessary.
#There was what I deem as tacit acceptance from 5.3/5.4 RMs on this.

show more ...


Revision tags: php-5.4.0
# bcefc31e6 24-Feb-2012 Gustavo André dos Santos Lopes

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


# 911330e6 24-Feb-2012 Gustavo André dos Santos Lopes

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


# cde76622 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


# 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


# fc134965 21-Feb-2012 Gustavo André dos Santos Lopes

- Revert r134029. The streams pooling API was never used in more
than 8 years and therefore unnecessarily adds complexity.


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


# f5a45731 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++


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


12345678910>>...15