summaryrefslogtreecommitdiff
path: root/TSRM
Commit message (Collapse)AuthorAgeFilesLines
* properly export tsrm_strtok_r()Anatol Belski2014-10-052-2/+4
| | | | | for this particular case fixing phar shared build, but for the general usage anyway
* remove misprint parenthesesAnatol Belski2014-10-031-2/+2
|
* removed *.dsw and *.dsp filesAnatol Belski2014-09-281-178/+0
|
* s/PHP 5/PHP 7/Johannes Schlüter2014-09-194-4/+4
|
* reverted some previous IS_ABSOLUTE_PATH related changesAnatol Belski2014-09-191-2/+1
| | | | It's fine with strlen usage now, only one call
* correct type for the thread idAnatol Belski2014-09-181-1/+1
|
* avoid repeated strlen usageAnatol Belski2014-09-141-1/+2
|
* avoid usage of 'type' before the null pointer checkAnatol Belski2014-08-291-1/+1
|
* first shot on merging the core fro the int64 branchAnatol Belski2014-08-161-1/+1
|
* Merge branch 'PHP-5.5' into PHP-5.6Anatol Belski2014-02-241-1/+1
|\ | | | | | | | | * PHP-5.5: fixed macro
| * Merge branch 'PHP-5.4' into PHP-5.5Anatol Belski2014-02-241-1/+1
| |\ | | | | | | | | | | | | * PHP-5.4: fixed macro
| | * fixed macroAnatol Belski2014-02-241-1/+1
| | |
| | * Bump yearXinchen Hui2014-01-036-6/+6
| | |
| * | Fixed bug #66009 Failed compilation of PHP extension with C++ std library ↵Anatol Belski2014-01-041-8/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | using VS 2012 Visual Studio 2012 includes sanity checks for C++11 features, see http://msdn.microsoft.com/en-us/library/vstudio/bb531344(v=vs.110).aspx To fix the 'inline' keyword redefinition for C++ in debug mode, the new macros ZEND_WIN32_KEEP_INLINE is introduced, ZEND_WIN32_FORCE_INLINE is automatically appended in release mode.
| * | Bump yearXinchen Hui2014-01-036-6/+6
| |/
* | fix *.dsp files related to bug #50333Anatol Belski2014-01-281-4/+0
| |
* | Fixed bug #66009 Failed compilation of PHP extension with C++ std library ↵Anatol Belski2014-01-041-8/+1
| | | | | | | | | | | | | | | | | | | | using VS 2012 Visual Studio 2012 includes sanity checks for C++11 features, see http://msdn.microsoft.com/en-us/library/vstudio/bb531344(v=vs.110).aspx To fix the 'inline' keyword redefinition for C++ in debug mode, the new macros ZEND_WIN32_KEEP_INLINE is introduced, ZEND_WIN32_FORCE_INLINE is automatically appended in release mode.
* | Bump yearXinchen Hui2014-01-034-4/+4
| |
* | initial move on renaming files and fixing includesAnatol Belski2013-10-176-2321/+3
| |
* | Constify streams API and a few other calls down the rabbit hole.Andrey Hristov2013-07-302-2/+2
|/ | | | | (`char *` to `const char *` for parameters and few return values) In a few places int len moved to size_t len.
* fixed possible null derefAnatol Belski2013-07-221-3/+5
|
* Happy New YearXinchen Hui2013-01-016-6/+6
|
* Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-11-021-1/+4
|\
| * Fixed bug #62444 (Handle leak in is_readable on windows).Xinchen Hui2012-11-021-1/+4
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Anatoliy Belsky2012-10-311-0/+9
|\ \ | |/ | | | | | | * PHP-5.3: Fixed bug #63241 PHP fails to open Windows deduplicated files.
| * Fixed bug #63241 PHP fails to open Windows deduplicated files.Anatoliy Belsky2012-10-311-0/+9
| | | | | | | | | | | | | | Fix by (daniel dot stelter-gliese at innogames dot de). No test is supplied because the issue addresses the new feature of the Windows Server 2012 and would need a very specific filesystem setup.
| * Fixed bug #51860 (Include fails with toplevel symlink to /)Dmitry Stogov2012-01-301-3/+15
| |
| * - Year++Felipe Pena2012-01-016-6/+6
| |
| * - Fix #55295, check if malloc failedPierre Joye2011-07-271-0/+4
| |
| * Fix CSRasmus Lerdorf2011-05-191-8/+10
| |
| * Fix bug 54866Rasmus Lerdorf2011-05-191-2/+14
| |
| * - Fix possible memory leakJohannes Schlüter2011-05-161-0/+1
| | | | | | | | | | # Found by parfait - http://labs.oracle.com/projects/parfait/
| * - some more possible NULL derefPierre Joye2011-01-101-3/+24
| |
| * - fix possible NULL derefPierre Joye2011-01-101-0/+6
| |
| * - Year++Felipe Pena2011-01-018-8/+8
| |
| * - expose php_sys_(l)stat, doing will prevent me to have to provide pecl's ↵Pierre Joye2010-11-042-2/+14
| | | | | | | | builds for <5.3.3 and another set for 5.3.4+. Trunk remains the same, A(B/P)I can be broken there
| * - Fix #52908, fix declarationPierre Joye2010-09-221-1/+1
| |
| * - restore VOLUME_NAME_NT and VOLUME_NAME_DOS definition, thx Andrey for the ↵Pierre Joye2010-09-171-0/+8
| | | | | | | | headup
| * - sanity check for the path length and don't treat UNC as local path (no ↵Pierre Joye2010-09-131-1/+4
| | | | | | | | functional change, only less ops)
| * - use php_sys_lstatPierre Joye2010-09-131-1/+1
| |
| * - WSPierre Joye2010-09-132-47/+47
| |
| * - remove 'UNC' from the targetPierre Joye2010-09-101-2/+10
| |
| * - add php_sys_readlinkPierre Joye2010-09-102-1/+59
| |
| * - add lstat support for WindowsPierre Joye2010-09-012-15/+55
| |
| * - WSPierre Joye2010-08-271-30/+30
| |
| * - Symlink resolution fails when target is a DFS pathPierre Joye2010-08-261-2/+4
| |
| * fix bug #50101 (name clash between global and local variable)Antony Dovgal2010-06-081-8/+8
| |
| * - we don't need that anymorePierre Joye2010-04-281-5/+0
| |
* | Fixed bug #51860 (Include fails with toplevel symlink to /)Dmitry Stogov2012-01-301-3/+15
| |
* | - Year++Felipe Pena2012-01-016-6/+6
| |