summaryrefslogtreecommitdiff
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* PHP 5.3.23php-5.3.23PHP-5.3.23Johannes Schlüter2013-03-141-2/+2
|
* 5.3.23RC1php-5.3.23RC1Stanislav Malyshev2013-02-281-2/+2
|
* This will be PHP 5.3.23Johannes Schlüter2013-01-311-3/+3
|
* This will be PHP 5.3.22Johannes Schlüter2013-01-031-3/+3
|
* Happy New Year~Xinchen Hui2013-01-0169-69/+69
|
* this will become PHP 5.3.21Johannes Schlüter2012-12-051-3/+3
|
* Fixed bug #63377 (Segfault on output buffer)Xinchen Hui2012-11-301-1/+1
|
* This will be PHP 5.3.20Johannes Schlüter2012-11-081-3/+3
|
* Fix bug #63240 on stream_get_line()Gustavo Lopes2012-10-121-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>
* Fixed bug #63236 (Executable permission on various source files)Xinchen Hui2012-10-094-0/+0
|
* PHP-5.3 branch is 5.3.19 nowJohannes Schlüter2012-10-041-3/+3
|
* Fixed bug #60723 (error_log error time has changed to UTC ignoring default ↵Xinchen Hui2012-09-241-1/+9
| | | | | | timezo) Cherry pick to 5.3
* This will become 5.3.18Johannes Schlüter2012-09-131-3/+3
|
* - Fixed bug #62525 (sigabrt while converting floating point to string)Felipe Pena2012-07-141-1/+1
|
* This wil be PHP 5.3.16Johannes Schlüter2012-07-051-3/+3
|
* improve overflow checksStanislav Malyshev2012-06-081-5/+5
|
* fix potential overflow in _php_stream_scandirStanislav Malyshev2012-06-071-3/+8
|
* PHP 5.3.15-devJohannes Schlüter2012-05-161-3/+3
|
* This will be PHP 5.3.14Johannes Schlüter2012-05-081-3/+3
|
* Fixed Bug #61961 (file_get_content leaks when access empty file with max length)Reeze Xia2012-05-061-1/+6
|
* Bump to next versionChristopher Jones2012-05-031-3/+3
| | | | Bump PHP version number
* Fixed bug in new stream_get_line() when using NUL as a delimiter.Gustavo André dos Santos Lopes2012-04-071-2/+2
| | | | This is the issue Derick spotted a few days ago..
* Fixed bug #61650 (ini parser crashes when using ${xxxx} ini variables ↵Xinchen Hui2012-04-061-1/+3
| | | | (without apache2))
* Cherry-pick 4cc74767Gustavo André dos Santos Lopes2012-04-041-10/+19
| | | | | | | | | | | Headers: forbid \r and \n also after \0, allow CRLF followed by HT or SP and forbid \0. See bug #60227. Conflicts: ext/standard/tests/general_functions/bug60227.phpt ext/standard/tests/general_functions/bug60227_1.phpt ext/standard/tests/general_functions/bug60227_2.phpt main/SAPI.c
* Fix warning "suggest parentheses around assignment"Xinchen Hui2012-04-041-1/+1
|
* Fixed bug #61605 (header_remove() does not remove all headers)Xinchen Hui2012-04-041-6/+32
|
* Cleanup Safe Mode related comment in SG(request_info)reeze2012-03-311-1/+0
|
* This will be PHP 5.3.12Johannes Schlüter2012-03-291-3/+3
|
* - fix bug #61541, Segfault when using ob_* in output_callbackreeze2012-03-291-0/+11
|
* Fixed bug #61043: Regression in magic_quotes_gpc fix (CVE-2012-0831)Gustavo André dos Santos Lopes2012-03-211-4/+9
|\ | | | | | | | | | | Merge commit 'refs/pull/12/head' of git://github.com/php/php-src into 5.3 Signed-off-by: Gustavo André dos Santos Lopes <cataphract@php.net>
| * Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831)Ondřej Surý2012-03-211-4/+9
| |
* | - merge fix bug #54374, bug #55500 - filter file names better, no dangling ↵Pierre Joye2012-03-211-0/+4
|/ | | | [s, svn revision 321664
* - Fixed bug #61371 (resource leak). This bug had two parts, a long standing leakGustavo André dos Santos Lopes2012-03-171-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 Lopes2012-03-081-1/+1
|
* - Fixed bug #61253: Wrappers opened with errors concurrency problemGustavo André dos Santos Lopes2012-03-082-40/+65
| | | | | | | | | | #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 theGustavo André dos Santos Lopes2012-03-041-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 Alshanetsky2012-03-031-0/+1
| | | | paths)
* Fix bug 61193Rasmus Lerdorf2012-02-271-8/+3
|
* - Better fix for #61115.Gustavo André dos Santos Lopes2012-02-241-3/+8
| | | | | - Fixed resource leak in stream_socket_client().
* - Fixed bug #61115 (stream related segfault on fatal error inGustavo André dos Santos Lopes2012-02-221-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 pathMateusz Kocielski2012-02-141-6/+17
| | | | | Reviewed by: rasmus@
* Improved max_input_vars directive to check nested variablesDmitry Stogov2012-02-142-33/+32
|
* Fixed bug #61000 (Exceeding max nesting level doesn't delete numerical vars).Xinchen Hui2012-02-081-2/+2
|
* Fix for bug 60986Rasmus Lerdorf2012-02-061-1/+0
|
* - Merging r323033 into 5.3 (see bug #60227).Gustavo André dos Santos Lopes2012-02-031-4/+5
|
* This will be PHP 5.3.11, 5.3.10 will be released from other branchJohannes Schlüter2012-02-021-3/+3
|
* Always restore PG(magic_quote_gpc) on request shutdownDmitry Stogov2012-02-021-2/+7
|
* Fixed memory leaksDmitry Stogov2012-02-021-2/+13
|
* fix UMR in php_register_variable_ex, reported by Stefan EsserStanislav Malyshev2012-02-011-0/+3
|
* - Further fix for bug #60455 (stream_get_line misbehaves if EOF is not detectedGustavo André dos Santos Lopes2012-01-221-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