summaryrefslogtreecommitdiff
path: root/ext/mbstring
Commit message (Collapse)AuthorAgeFilesLines
* put this test back to XFAIL, as it was before, since it is still leaking memoryFerenc Kovacs2014-04-291-0/+2
|
* tests still failing, so xfail for now until fixedStanislav Malyshev2014-01-292-2/+4
|
* Merge branch 'PHP-5.4' into PHP-5.5Yasuo Ohgaki2014-01-295-14/+10
|\ | | | | | | | | * PHP-5.4: Fixed zend.multibyte tests partially
| * Fixed zend.multibyte tests partiallyYasuo Ohgaki2014-01-295-14/+10
| |
| * XFAIL multibyte tests until they are fixed (bug 66582)Stanislav Malyshev2014-01-267-0/+14
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2014-01-267-0/+14
|\ \ | | | | | | | | | | | | * PHP-5.4: XFAIL multibyte tests until they are fixed (bug 66582)
| * | XFAIL multibyte tests until they are fixed (bug 66582)Stanislav Malyshev2014-01-267-0/+14
| |/
* | Merge branch 'PHP-5.4' into PHP-5.5Yasuo Ohgaki2014-01-1914-95/+22
|\ \ | |/ | | | | | | * PHP-5.4: Enable zend.multibyte tests. Tipcal configuration works, but most tests fail.
| * Enable zend.multibyte tests. Tipcal configuration works, but most tests fail.Yasuo Ohgaki2014-01-1914-95/+22
| |
| * Bump yearXinchen Hui2014-01-037-7/+7
| |
* | Bump yearXinchen Hui2014-01-037-7/+7
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Felipe Pena2013-10-204-4/+4
|\ \ | |/ | | | | | | * PHP-5.4: - Fixed possible uninitialized scalar variable usage (spotted by Coverity)
| * - Fixed possible uninitialized scalar variable usage (spotted by Coverity)Felipe Pena2013-10-204-4/+4
| |
* | Fix long-standing visual pain point: the misalignment of './configure help' ↵Christopher Jones2013-08-061-4/+4
| | | | | | | | | | | | text. Whitespace changes and a couple of grammar fixes.
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-08-042-2/+2
|\ \ | |/ | | | | | | | | | | | | * PHP-5.4: non living code related typo fixes Conflicts: Zend/zend_compile.c
| * non living code related typo fixesVeres Lajos2013-08-042-2/+2
| |
| * MFH: fixed #65045: mb_convert_encoding breaks well-formed character.Rui Hirokawa2013-07-315-202/+215
| |
| * Merge branch 'pull-request/341'Stanislav Malyshev2013-06-104-4/+4
| | | | | | | | | | * pull-request/341: (23 commits) typofixes
* | added test script for bug65045.Rui Hirokawa2013-07-311-0/+29
| |
* | MFH: fixed #65045: mb_convert_encoding breaks well-formed character.Rui Hirokawa2013-07-314-202/+186
| |
* | Merge branch 'pull-request/341'Stanislav Malyshev2013-06-104-4/+4
| | | | | | | | | | * pull-request/341: (23 commits) typofixes
* | Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-05-091-0/+2
|\ \ | |/
| * Missed SKIPIFXinchen Hui2013-05-091-0/+2
| |
* | Fixed bug #64769 mbstring PHPTs crash on Windows x64Anatol Belski2013-05-082-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The tricky business going there in oniguruma is saving a pointer in an int variable, passing that variable into a function and making it a pointer again. On 64bit windows casting a pointer to a 32 bit int will truncate that pointer. This kind of things won't work on Windows x64. [SNIPPET] unsigned long ul0[2], ul1, *ul2; ul0[0] = 42uL; ul0[0] = 24uL; ul1 = (unsigned long)ul0; ul2 = (unsigned long *)ul1; /* now it's broken, accessing ul2[0] will crash. */ [/SNIPPET] To make it portable, ULONG_PTR should be used in this case. In oniguruma this behaviour is to see at least in the following codepath: ext/mbstring/oniguruma/enc/unicode.c:10938 ext/mbstring/oniguruma/st.c:308 ext/mbstring/oniguruma/enc/unicode.c:10859
* | Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-02-161-2/+0
|\ \ | |/
| * Fix test failed after 0ea83ff8478d867ebf1603a43cd5d3432022cee7Xinchen Hui2013-02-161-2/+0
| |
| * mb_split() can now handle empty matches like preg_split() does.Moriyoshi Koizumi2013-02-103-40/+46
| |
| * Happy New YearXinchen Hui2013-01-017-7/+7
| |
* | mb_split() can now handle empty matches like preg_split() does.Moriyoshi Koizumi2013-02-103-40/+46
| |
* | Happy New YearXinchen Hui2013-01-017-7/+7
| |
* | Merge branch 'PHP-5.4'Xinchen Hui2012-11-074-0/+80
|\ \ | |/
| * Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-11-074-0/+80
| |\
| | * Fixed bug #63447 (max_input_vars doesn't filter variables when ↵Xinchen Hui2012-11-074-0/+80
| | | | | | | | | | | | mbstring.encoding_translation = On)
* | | Merge branch 'PHP-5.4'Xinchen Hui2012-10-101-0/+0
|\ \ \ | |/ /
| * | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-10-101-0/+0
| |\ \ | | |/
| | * Remove executable permission on phptXinchen Hui2012-10-101-0/+0
| | |
* | | Merge branch 'PHP-5.4'Xinchen Hui2012-10-098-0/+0
|\ \ \ | |/ /
| * | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-10-098-0/+0
| |\ \ | | |/
| | * Fixed bug #63236 (Executable permission on various source files)Xinchen Hui2012-10-098-0/+0
| | |
| | * Fixed bug #61631 mbstring mail related tests failAnatoliy Belsky2012-04-108-0/+24
| | |
| * | Allow null as a default value for length in mb_substr() and mb_strcut()Lars Strojny2012-09-022-6/+12
| | |
| * | Fixed bug #61631 mbstring mail related tests failAnatoliy Belsky2012-04-108-16/+16
| | |
* | | Allow null as a default value for length in mb_substr() and mb_strcut()Lars Strojny2012-09-022-4/+42
| | |
* | | Fixed bug #61631 mbstring mail related tests failAnatoliy Belsky2012-04-108-16/+16
| | |
* | | Merge branch 'PHP-5.4'Xinchen Hui2012-03-221-2/+2
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | * PHP-5.4: Fix test, and merge the modification from trunk Conflicts: ext/mbstring/tests/mb_eregi_replace.phpt
| * | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-03-221-3/+3
| |\ \ | | |/ | | | | | | | | | * PHP-5.3: Fix test, and merge the modification from trunk
| | * Fix test, and merge the modification from trunkXinchen Hui2012-03-221-3/+3
| | |
| | * fixed failed tests (backport from PHP_5_4/trunk).Rui Hirokawa2012-01-143-3/+6
| | |
| | * - Year++Felipe Pena2012-01-017-7/+7
| | |
| | * - Fix the fix (thanks Chris Jones!)Felipe Pena2011-11-221-1/+1
| | |