Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | - Fixed bug #61371 (resource leak). This bug had two parts, a long standing leak | Gustavo André dos Santos Lopes | 2012-03-17 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | already fixed in trunk/5.3 and now merged onto 5.4 and a leak introduced in fixing bug #61115. This better fix for #61115 fixes the leak (the inhibition for deleting the context was too broad) and so prevents segfaults in new circumstances (where the inhibition was not broad enough). | |||||
* | | | - Oops committed old version of the patch in r324020. Fixed. See bug #61253. | Gustavo André dos Santos Lopes | 2012-03-08 | 1 | -1/+1 | |
| | | | ||||||
* | | | - Fixed bug #61253: Wrappers opened with errors concurrency problem | Gustavo André dos Santos Lopes | 2012-03-08 | 1 | -38/+63 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #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. | |||||
* | | | - Better fix for #61115. | Gustavo André dos Santos Lopes | 2012-02-24 | 1 | -3/+8 | |
| | | | | | | | | | | | | | | | - Fixed resource leak in stream_socket_client(). | |||||
* | | | - Fixed bug #61115 (stream related segfault on fatal error in | Gustavo André dos Santos Lopes | 2012-02-22 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | | | | | | | php_stream_context_link). #run-tests.php is not currently detecting the segfault in the test #Missing 5.4 merge | |||||
* | | | - Revert r134029. The streams pooling API was never used in more | Gustavo André dos Santos Lopes | 2012-02-21 | 1 | -69/+0 | |
| | | | | | | | | | | | | | | | than 8 years and therefore unnecessarily adds complexity. | |||||
* | | | - Further fix for bug #60455 (stream_get_line misbehaves if EOF is not detected | Gustavo André dos Santos Lopes | 2012-01-22 | 1 | -48/+82 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | |||||
* | | | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 | |
| | | | ||||||
* | | | - Fixed bug #60455: stream_get_line misbehaves if EOF is not detected together | Gustavo André dos Santos Lopes | 2011-12-11 | 1 | -3/+2 | |
| | | | | | | | | | | | | | | | with the last read. | |||||
* | | | - Fixed borked refactoring in r307437 (using SUCCESS/FAILURE return instead of | Gustavo André dos Santos Lopes | 2011-09-04 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | | | - Fixed bug #52935 (call exit in user_error_handler cause stream relate core). | Gustavo André dos Santos Lopes | 2011-07-05 | 1 | -0/+10 | |
| | | | ||||||
* | | | Fixed bug #51997 (SEEK_CUR with 0 value, returns a warning). | Ilia Alshanetsky | 2011-06-05 | 1 | -1/+1 | |
| | | | ||||||
* | | | Fixed bug #54946 (stream_get_contents infinite loop) | Hannes Magnusson | 2011-05-29 | 1 | -0/+3 | |
|/ / | ||||||
* | | - Fixed accidental change. | Gustavo André dos Santos Lopes | 2011-05-01 | 1 | -1/+1 | |
| | | ||||||
* | | - Fixed bug #54623 (Segfault when when writing to a persistent socket after | Gustavo André dos Santos Lopes | 2011-05-01 | 1 | -3/+26 | |
| | | | | | | | | | | closing a copy of the socket). | |||||
* | | - Make fclose() actually close stream, even when the resource refcount is > 1. | Gustavo André dos Santos Lopes | 2011-03-21 | 1 | -4/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | | - Fixed several comparisons that always result in true of false | Gustavo André dos Santos Lopes | 2011-02-01 | 1 | -10/+14 | |
| | | | | | | | | | | | | | | 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 | |||||
* | | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 | |
| | | ||||||
* | | - Reverted unintended change. | Gustavo André dos Santos Lopes | 2010-11-19 | 1 | -1/+1 | |
| | | ||||||
* | | - Fixed bug #52820 (writes to fopencookie FILE* not commited when seeking the | Gustavo André dos Santos Lopes | 2010-11-15 | 1 | -0/+5 | |
| | | | | | | | | stream). | |||||
* | | - Added leak_variable() function. | Gustavo André dos Santos Lopes | 2010-11-15 | 1 | -4/+75 | |
| | | | | | | | | | | | | | | - Added mechanism to force outer streams to be closed before their inner ones. - Fixed temp:// streams only handling correctly (through an ad hoc mechanism) reverse closing order when the inner stream is of type memory. | |||||
* | | - Fixed forward stream seeking emulation in streams that don't support seeking | Gustavo André dos Santos Lopes | 2010-10-13 | 1 | -9/+7 | |
| | | | | | | | | | | | | | | | | | | in situations where the read operation gives back less data than requested and when there was data in the buffer before the emulation started. Also made more consistent its behavior -- should return failure every time less data than was requested was skipped. - Small performance improvement by correcting off-by-one error that generate an invalid call to the seek handler or read handler. in _php_stream_seek. | |||||
* | | - use TSRMLS_*C instead of TSRMLS_FETCH in zend_list_insert | Pierre Joye | 2010-09-16 | 1 | -2/+2 | |
| | | ||||||
* | | - add lstat support for Windows | Pierre Joye | 2010-09-01 | 1 | -1/+0 | |
| | | ||||||
* | | - #51854, fix logic (patch by Tjerk) | Pierre Joye | 2010-05-18 | 1 | -1/+1 | |
| | | ||||||
* | | Removed safe_mode | Kalle Sommer Nielsen | 2010-04-26 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore | |||||
* | | - WS | Pierre Joye | 2010-04-08 | 1 | -26/+26 | |
|/ | ||||||
* | Fixed bug #50657 (copy() with an empty (zero-byte) HTTP source succeeds but ↵ | Ilia Alshanetsky | 2010-01-06 | 1 | -1/+1 | |
| | | | | returns false). | |||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 | |
| | ||||||
* | - Switching to TSRMLS_FETCH version | Felipe Pena | 2009-11-16 | 1 | -1/+2 | |
| | ||||||
* | - Fixed bug #49936 (crash with ftp stream in php_stream_context_get_option()) | Felipe Pena | 2009-11-15 | 1 | -14/+10 | |
| | | | | | (patch by Pierrick) | |||||
* | MFH: Fixed bug #48309 (stream_copy_to_stream() and fpasstru() do not | Arnaud Le Blanc | 2009-05-17 | 1 | -3/+3 | |
| | | | | | update stream position of plain files) | |||||
* | MFH: Fixed bug #48307 (stream_copy_to_stream() copies 0 bytes when $source | Arnaud Le Blanc | 2009-05-16 | 1 | -5/+2 | |
| | | | | | is a socket) | |||||
* | MFH: Better fix for #47997 | Arnaud Le Blanc | 2009-04-19 | 1 | -12/+25 | |
| | ||||||
* | Fixed bug #47997 (stream_copy_to_stream returns 1 on empty streams) | Arnaud Le Blanc | 2009-04-19 | 1 | -8/+32 | |
| | ||||||
* | MFH: Better fix for #44607. Fixes #47487 (php_stream_fill_read_buffer() | Arnaud Le Blanc | 2009-03-19 | 1 | -15/+26 | |
| | | | | | performance degraded after fix of bug 44607). | |||||
* | MFH: | Felipe Pena | 2009-01-08 | 1 | -0/+1 | |
| | | | | | | - Fixed bug #47037 (No error when using fopen with emty string) Patch by Cristian Rodriguez R. | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 | |
| | ||||||
* | If a wrapper could not be found it is either a typo or a configuration ↵ | Lars Strojny | 2008-12-14 | 1 | -5/+5 | |
| | | | | issue. But in both cases it is critical enough to warn the user. | |||||
* | MFH: Revert fix for 43782, as it caused problems. | David Soria Parra | 2008-11-24 | 1 | -1/+1 | |
| | ||||||
* | MFH: Fixed stream_get_contents() when using $maxlength and socket is not | Arnaud Le Blanc | 2008-11-11 | 1 | -1/+1 | |
| | | | | | closed. indeyets@php.net on #46049. | |||||
* | MFH: Fixed stream_get_line() to behave as documented on non-blocking | Arnaud Le Blanc | 2008-11-04 | 1 | -0/+3 | |
| | | | | | streams | |||||
* | MFH: Fixed bug #44607 (stream_get_line unable to correctly identify the | Arnaud Le Blanc | 2008-11-03 | 1 | -9/+13 | |
| | | | | | "ending" in the stream content) | |||||
* | MFH: Fixed bug #43353 (wrong detection of 'data' wrapper causes notice) | Arnaud Le Blanc | 2008-11-03 | 1 | -1/+1 | |
| | ||||||
* | MF52 fix Bug #46147: after stream seek, appending stream filter reads ↵ | Greg Beaver | 2008-09-22 | 1 | -0/+4 | |
| | | | | incorrect data | |||||
* | MFH: Fixed bug #43782 (feof() does not detect timeout on socket) | David Soria Parra | 2008-08-26 | 1 | -1/+1 | |
| | ||||||
* | MFH: increase context refcount before open() to avoid crash when open() ↵ | Antony Dovgal | 2008-08-06 | 1 | -4/+12 | |
| | | | | fails and destroys the context | |||||
* | MFH | Antony Dovgal | 2008-07-11 | 1 | -2/+3 | |
| | ||||||
* | MFH: manage references of stream context properly | Antony Dovgal | 2008-07-11 | 1 | -0/+9 | |
| | ||||||
* | closeder/readdir/rewinddir must work only with directories | Dmitry Stogov | 2008-06-11 | 1 | -1/+1 | |
| |