History log of /php-src/Zend/zend_exceptions.c (Results 151 – 175 of 425)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: php-5.6.24RC1, php-7.1.0alpha3, php-7.0.9RC1, php-7.1.0alpha2
# f8faffe3 22-Jun-2016 Dmitry Stogov

Merge branch 'PHP-7.0'

* PHP-7.0:
Allow "proxy" ovjects to substitute their class names through get_class_name() handler (similar to var_dump() and others).


# 3c84e5e1 22-Jun-2016 Dmitry Stogov

Allow "proxy" ovjects to substitute their class names through get_class_name() handler (similar to var_dump() and others).

Revision tags: php-7.0.8, php-5.6.23
# 16160386 21-Jun-2016 Dmitry Stogov

Added ZEND_ATTRIBUTE_FORMAT to some middind functions.
"%p" replaced by ZEND_LONG_FMT to avoid compilation warnings.
Fixed most incorrect use cases of format specifiers.

Revision tags: php-5.5.37, php-5.6.23RC1, php-7.0.8RC1, php-7.1.0alpha1, php-5.6.22, php-5.5.36, php-7.0.7
# 7b94b958 12-May-2016 Dmitry Stogov

Intern some known (and offten used) strings.

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
# 56365982 02-Jan-2016 Xinchen Hui

Merge branch 'PHP-7.0'


# 97a9470d 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

# a2e4e646 20-Nov-2015 Xinchen Hui

Merge branch 'PHP-5.6' into PHP-7.0

Conflicts:
Zend/zend_exceptions.c


# 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, php-7.0.0beta3, php-5.4.44
# f2f8ea9a 04-Aug-2015 Stanislav Malyshev

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
__wakeup doesn't have to be final


# f1acac15 04-Aug-2015 Stanislav Malyshev

__wakeup doesn't have to be final

12345678910>>...17