Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix stream_select() issue with OpenSSL buffer | Chris Wright | 2014-08-27 | 1 | -4/+4 |
| | | | | | | | | | | | | Ensure data from OpenSSL internal buffer has been transfered to PHP stream buffer before a select() emulation operation is performed Addresses bug #65137 https://bugs.php.net/bug.php?id=65137 Conflicts: ext/openssl/xp_ssl.c | ||||
* | Fix bug #65701: Do not use cache for file file copy | Boro Sitnikovski | 2014-04-20 | 1 | -22/+26 |
| | |||||
* | Fix Bug #66736 fpassthru broken | Michael Wallner | 2014-04-03 | 1 | -2/+7 |
| | |||||
* | Fixed bug #61019 (Out of memory on command stream_get_contents) | Michael Wallner | 2014-04-02 | 1 | -0/+4 |
| | |||||
* | Fix bug #64330 | Michael Wallner | 2014-04-02 | 1 | -1/+2 |
| | | | | stream_socket_server() creates wrong Abstract Namespace UNIX sockets | ||||
* | Bump year | Xinchen Hui | 2014-01-03 | 18 | -18/+18 |
| | |||||
* | Fixed bug #61645 (fopen and O_NONBLOCK) | Michael Wallner | 2013-12-06 | 1 | -5/+7 |
| | | | | | | if a mode like "rn" was passed to fopen(), then php_stream_parse_fopen_modes() would assign O_WRONLY to flags, because O_NONBLOCK tainted flags for the r/w/+ check | ||||
* | Properly fixed bug #63186 on NetBSD == 6.0 | Matteo Beccati | 2013-07-19 | 1 | -1/+1 |
| | |||||
* | fix possible resource leak and make sure there's something to qsort() | Anatol Belski | 2013-07-10 | 1 | -1/+3 |
| | |||||
* | Merge branch 'PHP-5.3' into PHP-5.4 | Matteo Beccati | 2013-06-14 | 1 | -3/+11 |
|\ | | | | | | | | | * PHP-5.3: Fixed bug #63186 (compile failure on netbsd) | ||||
| * | Fixed bug #63186 (compile failure on netbsd) | Matteo Beccati | 2013-06-14 | 1 | -3/+11 |
| | | |||||
| * | Happy New Year~ | Xinchen Hui | 2013-01-01 | 18 | -18/+18 |
| | | |||||
* | | Merge branch 'pull-request/341' | Stanislav Malyshev | 2013-06-10 | 1 | -1/+1 |
| | | | | | | | | | | * pull-request/341: (23 commits) typofixes | ||||
* | | keep previous test to avoid any behavior change | Remi Collet | 2013-04-02 | 1 | -2/+4 |
| | | |||||
* | | fix comment | Remi Collet | 2013-04-02 | 1 | -3/+1 |
| | | |||||
* | | Fixed Bug #64565 copy doesn't report failure on partial copy | Remi Collet | 2013-04-02 | 1 | -5/+4 |
| | | | | | | | | | | | | | | | | | | _php_stream_copy_to_stream_ex, when mmap is possible, doesn't check if actually written bytes match read bytes. Fix this (paranoid check) to be consistent with non mmap mode Seems hard to add a unit test, as this rely on a full filesystem. | ||||
* | | Fix missing parameter | Andras Elso | 2013-01-27 | 1 | -1/+1 |
| | | |||||
* | | Happy New Year | Xinchen Hui | 2013-01-01 | 18 | -18/+18 |
| | | |||||
* | | Fix for bug #63811 | Rasmus Lerdorf | 2012-12-19 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Gustavo Lopes | 2012-10-12 | 1 | -2/+10 |
|\ \ | |/ | | | | | | | * PHP-5.3: Fix bug #63240 on stream_get_line() | ||||
| * | Fix bug #63240 on stream_get_line() | Gustavo Lopes | 2012-10-12 | 1 | -2/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | stream_get_line() could contain the delimiter string if that string had more than one character. The bug manifested itself when a read on the stream ended with part of the delimiter string and the read after would start with the rest of the delimiter string; provided that the data of first read did not complete the max length result of the call to stream_get_line() with the partial delimiter used in that max length return. In that case, the delimiter will still appear in the result, divided in two subsequent return values. That is not a bug. See <http://www.mail-archive.com/internals@lists.php.net/msg61325.html> | ||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2012-10-09 | 3 | -0/+0 |
|\ \ | |/ | |||||
| * | Fixed bug #63236 (Executable permission on various source files) | Xinchen Hui | 2012-10-09 | 3 | -0/+0 |
| | | |||||
* | | fix bug #40459 - make all stream funcs that create object call ctor | Stanislav Malyshev | 2012-08-07 | 1 | -117/+80 |
| | | |||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Stanislav Malyshev | 2012-06-08 | 1 | -0/+5 |
|\ \ | |/ | | | | | | | | | * PHP-5.3: improve overflow checks fix potential overflow in _php_stream_scandir | ||||
| * | improve overflow checks | Stanislav Malyshev | 2012-06-08 | 1 | -5/+5 |
| | | |||||
| * | fix potential overflow in _php_stream_scandir | Stanislav Malyshev | 2012-06-07 | 1 | -3/+8 |
| | | |||||
* | | fix potential overflow in _php_stream_scandir | Stanislav Malyshev | 2012-06-07 | 1 | -3/+8 |
| | | |||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Nikita Popov | 2012-05-06 | 1 | -1/+6 |
|\ \ | |/ | | | | | | | | | * PHP-5.3: Add NEWS entry for bug #61961 Fixed Bug #61961 (file_get_content leaks when access empty file with max length) | ||||
| * | Fixed Bug #61961 (file_get_content leaks when access empty file with max length) | Reeze Xia | 2012-05-06 | 1 | -1/+6 |
| | | |||||
* | | Merge branch '5.3' into 5.4 | Gustavo André dos Santos Lopes | 2012-04-07 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Fixed bug in new stream_get_line() when using NUL as a delimiter. | Gustavo André dos Santos Lopes | 2012-04-07 | 1 | -2/+2 |
| | | | | | | | | This is the issue Derick spotted a few days ago.. | ||||
| * | - 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. | ||||
| * | - size_t may be shorter than long and definitely is not signed. Note that the | Gustavo André dos Santos Lopes | 2012-03-04 | 1 | -1/+3 |
| | | | | | | | | | | z modifier was only added in C99, so we can't use it. | ||||
| * | Fixed bug #60106 (stream_socket_server silently truncates long unix socket ↵ | Ilia Alshanetsky | 2012-03-03 | 1 | -0/+1 |
| | | | | | | | | paths) | ||||
| * | - 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 | -3/+5 |
| | | | | | | | | | | | | | | php_stream_context_link). #run-tests.php is not currently detecting the segfault in the test #Missing 5.4 merge | ||||
| * | * fixed bug #60704 unlink() bug with some files path | Mateusz Kocielski | 2012-02-14 | 1 | -6/+17 |
| | | | | | | | | | | Reviewed by: rasmus@ | ||||
| * | - 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 | 18 | -18/+18 |
| | | |||||
| * | Initialize structure (some fields may be missed in array returned from user ↵ | Dmitry Stogov | 2011-12-22 | 1 | -0/+1 |
| | | | | | | | | handler). | ||||
| * | - 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 | -6/+8 |
| | | | | | | | | | | | | | | 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. | ||||
| * | Sync r314808 to 5_3 branch | Xinchen Hui | 2011-08-23 | 1 | -1/+1 |
| | | | | | | | | | | Eliminated compiler warnings "comparison is always false", "cast to pointer from integer of different siz" and tail zero warnings | ||||
| * | Avoiding strcpy, strcat, sprintf usage to make static analyzer happy | Xinchen Hui | 2011-08-09 | 1 | -1/+1 |
| | | |||||
| * | - 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 |
| | |