summaryrefslogtreecommitdiff
path: root/Zend
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.3' of git.php.net:/php-src into PHP-5.3Johannes Schlüter2013-01-294-70/+99
|\
| * Fix bug #64023 (__toString() & SplFileInfo)Gustavo Lopes2013-01-222-70/+15
| | | | | | | | | | | | | | | | | | | | | | | | Defining a __toString() method was having no effect when concatenating the object. This was because the cast_object() handler would ignore __toString(). Using echo() directly would actually use __toString(), but this was a bug: the ECHO handler would try zend_std_cast_object_tostring() before cast_object(), but cast_object() should have priority as zend_std_cast_object_tostring() assumes an object with a zend_class_entry.
| * fix bug #63462 (Magic methods called twice for unset protected properties)Stanislav Malyshev2013-01-182-0/+84
| |
* | Fix bug #64099 (Wrong TSRM usage in zend_register_class_alias)Johannes Schlüter2013-01-291-2/+2
|/
* Fixed compilator bug that might cause jump depended on unitialized valueDmitry Stogov2013-01-092-3/+4
|
* Fixed bug #63899 (Use after scope error in zend_compile)Xinchen Hui2013-01-041-1/+1
|
* Happy New YearXinchen Hui2013-01-0196-98/+98
|
* Revert "Remove a useless memory write in zend_llist_del_element"Pierrick Charron2012-12-261-1/+3
| | | | | This reverts commit fad960a4045da86cdbd8308a165ffc47892f05b9 as required by Stas and Christopher
* Remove a useless memory write in zend_llist_del_elementPierrick Charron2012-12-251-3/+1
| | | | | The zend_llist_element *next pointer is not necessary and removing it will also remove a write on memory
* Fix Bug #63762 Sigsegv when Exception::$trace is changed by userJohannes Schlüter2012-12-132-15/+92
|
* Fixed bug #63726 (Memleak with static properties and internal/user classes)Xinchen Hui2012-12-102-0/+4
|
* Fixed bug #63635 (Segfault in gc_collect_cycles)Dmitry Stogov2012-11-292-2/+62
|
* Fixed bug #63468 (wrong called method as callback with inheritance)Dmitry Stogov2012-11-202-1/+31
|
* Regenerate Zend ini scannerPierrick Charron2012-11-162-1349/+1335
| | | | Regenerate both zend_ini_scanner.c and zend_ini_scanner_defs.h
* Fixed bug #63512 parse_ini_file() with INI_SCANNER_RAW removes quotes from valuePierrick Charron2012-11-161-18/+25
| | | | Restore the old behavior but keep bug 51094 fixed
* preg indenpent test script for #63055Xinchen Hui2012-10-191-0/+23
|
* SUpport newer bisons.Derick Rethans2012-10-181-1/+1
|
* better fix for #63055Xinchen Hui2012-10-181-0/+2
|
* Remove executable permission on incXinchen Hui2012-10-105-0/+0
|
* Remove executable permission on phptXinchen Hui2012-10-10268-0/+0
|
* Fixed bug #63236 (Executable permission on various source files)Xinchen Hui2012-10-095-0/+0
|
* Fixed bug #63111 (is_callable() lies for abstract static method)Dmitry Stogov2012-09-212-1/+44
|
* Fixed bug #61442 (exception threw in __autoload can not be catched)Xinchen Hui2012-09-193-0/+75
|
* Fixed bug #63093 (Segfault while load extension failed in zts-build).Xinchen Hui2012-09-151-1/+3
|
* - Fixed bug #61767 (Shutdown functions not called in certain error situation)Dmitry Stogov2012-09-066-0/+108
| | | | - Fixed bug #60909 (custom error handler throwing Exception + fatal error = no shutdown function)
* Fixed bug #62976 (Notice: could not be converted to int when comparing some ↵Xinchen Hui2012-08-311-0/+3
| | | | builtin classes)
* Fixed bug (segfault while build with zts and GOTO vm-kind)Xinchen Hui2012-08-252-1/+8
|
* - Value stored to var is never usedFelipe Pena2012-08-191-2/+0
|
* Fixed bug #62763 (register_shutdown_function and extending class)Xinchen Hui2012-08-121-0/+23
|
* This becomes useless, since we have set that in the INIT macroXinchen Hui2012-08-041-1/+0
|
* Fixed bug #62744 (dangling pointers made by zend_disable_class)Xinchen Hui2012-08-042-7/+11
| | | | the test will be added while commit the fix for #62737
* Fixed bug #62716 (munmap() is called with the incorrect length)Xinchen Hui2012-08-021-1/+1
|
* Test for bug #62680Xinchen Hui2012-07-311-0/+13
|
* Skip test while zend_mm is disabledXinchen Hui2012-07-291-0/+6
|
* Fixed bug #60194 for eavlXinchen Hui2012-07-283-4/+4
| | | | same reason here
* Fixed bug #60194 (--with-zend-multibyte and --enable-debug reports LEAK with ↵Xinchen Hui2012-07-283-4/+4
| | | | | | run-test.php) It's not a big deal, just because lexer will read the char after cursor before leaving
* appease MSVC (doesnt like unary minus of unsigned ints)Nuno Lopes2012-07-081-1/+1
|
* fix (signed) integer overflow (part of bug #52550Nuno Lopes2012-07-021-1/+1
|
* Remove unneeded and outdated ChangeLog fileJohannes Schlüter2012-06-221-22097/+0
|
* typoStanislav Malyshev2012-06-081-1/+1
|
* Regenerated filesPierrick Charron2012-06-072-1265/+1303
|
* Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that ↵Pierrick Charron2012-06-071-6/+27
| | | | | | | includes a semi-colon) Modify the scanner to check if the first char of the raw data is an opening " in which case we need to find the closing one. Otherwise just search for the next end of value char [\r\n;\000]
* - Optimize comparison between same HashTable pointerFelipe Pena2012-06-031-3/+4
|
* Fixed Bug #62005 (unexpected behavior when incrementally assigning to a ↵Xinchen Hui2012-05-122-2/+16
| | | | member of a null object)
* Fix typoXinchen Hui2012-05-031-1/+1
| | | | picked form pull request of reeze.xia@gmail.com
* Revert "- fix bug #61504, fix build errors on windows and possibly other"Gustavo André dos Santos Lopes2012-03-282-7430/+7430
| | | | This reverts commit 74ee335e3aea8c48380334098b8d20eb54d6c6be.
* - fix bug #61504, fix build errors on windows and possibly otherPierre Joye2012-03-282-7430/+7430
|
* Revert "Implemented FR #60738 (Allow 'set_error_handler' to handle NULL)"Xinchen Hui2012-03-242-46/+27
| | | | This reverts commit fcae164ea63979d7814d7aa114fe8351033e7400.
* Revert "Merge from PHP-5.4"Xinchen Hui2012-03-241-19/+18
| | | | This reverts commit 9a87fe1c529eabc7aeec4559d916dda5fda3cdd2.
* Implemented FR #60738 (Allow 'set_error_handler' to handle NULL)Xinchen Hui2012-03-242-27/+46
|