History log of /PHP-7.1/Zend/zend_exceptions.c (Results 26 – 50 of 293)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.6.22RC1, php-7.0.7RC1
# 2578d080 29-Apr-2016 Dmitry Stogov

Fixed compilation warnings


Revision tags: php-7.0.6, php-5.6.21, php-5.5.35
# f0a2e8eb 27-Apr-2016 Dmitry Stogov

Removed "zend_fcall_info.function_table". It was assigned in many places, but is never used.


Revision tags: php-5.6.21RC1, php-7.0.6RC1
# 7abfaac9 01-Apr-2016 Dmitry Stogov

Merge zend_execute_data->called_scope into zend_execute_data->This.
"called_scope" made sense only for static method calls, for dynamic calls it was always equal to the class of $this.
Now EG

Merge zend_execute_data->called_scope into zend_execute_data->This.
"called_scope" made sense only for static method calls, for dynamic calls it was always equal to the class of $this.
Now EG(This) may store IS_OBJECT + $this or IS_UNUSED + "called_scope" (of course, "called_scope" may be NULL).
Some code might need to be adopted to support this change.
Checks (Z_OBJ(EX(This))) might need to be converted into (Z_TYPE(EX(This)) == IS_OBJECT).

show more ...


Revision tags: php-5.6.20, php-5.5.34, php-7.0.5, php-5.6.20RC1, php-7.0.5RC1, php-5.6.19
# c67c166f 02-Mar-2016 Dmitry Stogov

Removed zend_fcall_info.symbol_table


Revision tags: php-5.5.33, php-7.0.4, php-5.6.19RC1, php-7.0.4RC1, php-5.6.18, php-7.0.3, php-5.5.32, php-5.6.18RC1, php-7.0.3RC1, php-5.6.17, php-5.5.31, php-7.0.2
# 97a9470d 02-Jan-2016 Xinchen Hui

bump year which is missed in rev 49493a2


# 3537e95d 02-Jan-2016 Xinchen Hui

bump year which is missed in rev 49493a2


Revision tags: php-7.0.2RC1, php-5.6.17RC1, php-7.0.1RC1, php-7.0.0, php-5.6.16, php-7.0.0RC8
# 7bfc4fca 21-Nov-2015 Xinchen Hui

cleanup


# 31d93fcf 21-Nov-2015 Xinchen Hui

Port the fix of 5.6 to 7.0


# cbc71995 21-Nov-2015 Xinchen Hui

Unused var


# 7b195c98 21-Nov-2015 Xinchen Hui

Improved fix for bug #70944


# a1c88796 20-Nov-2015 Xinchen Hui

Fixed bug #70944 (try{ } finally{} can create infinite chains of exceptions)


Revision tags: php-7.0.0RC7, php-5.6.16RC1, php-5.6.15, php-7.0.0RC6, php-7.0.1, php-5.6.15RC1, php-7.0.0RC5, php-5.5.30, php-5.6.14, php-7.0.0RC4, php-5.6.14RC1, php-7.0.0RC3, php-5.6.13, php-7.0.0RC2, php-5.5.29, php-5.4.45, php-5.6.13RC1
# 71af54e5 19-Aug-2015 Dmitry Stogov

Mark error and exception functions as "cold" (Matt's idea)


Revision tags: php-7.0.0RC1
# a1c9c318 18-Aug-2015 Bob Weinand

Woops, accidentally made TS build fail...


# 501407aa 18-Aug-2015 Bob Weinand

Revert fix for nicer truncation on log_errors_max_len


# c83cbdf6 18-Aug-2015 Bob Weinand

Better fix for exception traces truncation with anon classes


# d9a9b857 18-Aug-2015 Dmitry Stogov

Revert "Do not truncate exception traces upon anon class name"

This reverts commit b0c77fb80c9bceac37ec266f2d5a20131755c44a.


# b0c77fb8 18-Aug-2015 Bob Weinand

Do not truncate exception traces upon anon class name


# 63666799 14-Aug-2015 Nikita Popov

Executed file can be NULL

So revert this part to what it was originally.


# 2af19fb5 14-Aug-2015 Nikita Popov

Fix leak in previous commit

Turns out zend_update_property_str already does the copy implicitly.


# 13567d5d 14-Aug-2015 Nikita Popov

Don't copy zend_strings during exception creation

Minor optimization...


Revision tags: php-5.6.12, php-5.5.28
# feeb2fba 05-Aug-2015 Stanislav Malyshev

fix merge


Revision tags: php-7.0.0beta3, php-5.4.44
# 3e416bba 04-Aug-2015 Stanislav Malyshev

fix merge


# f1acac15 04-Aug-2015 Stanislav Malyshev

__wakeup doesn't have to be final


# 4d227814 27-Jul-2015 Stanislav Malyshev

Fix #69793 - limit what we accept when unserializing exception


# e488690d 27-Jul-2015 Stanislav Malyshev

Fix bug #70121 (unserialize() could lead to unexpected methods execution / NULL pointer deref)


12345678910>>...12