File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ PHP NEWS
52
52
. Fixed bug #60811 (php-fpm compilation problem). (rasmus)
53
53
54
54
- SOAP
55
+ . Fixed basic HTTP authentication for WSDL sub requests. (Dmitry)
55
56
. Fixed bug #60887 (SoapClient ignores user_agent option and sends no
56
57
User-Agent header). (carloschilazo at gmail dot com)
57
58
@@ -61,16 +62,15 @@ PHP NEWS
61
62
- PDO_Sqlite extension:
62
63
. Add createCollation support. (Damien)
63
64
64
- - SOAP:
65
- . Fixed basic HTTP authentication for WSDL sub requests. (Dmitry)
66
-
67
65
- Reflection:
68
66
. Fixed bug #60968 (Late static binding doesn't work with
69
67
ReflectionMethod::invokeArgs()). (Laruence)
70
68
71
69
- Session:
72
70
. Fixed bug #60860 (session.save_handler=user without defined function core
73
71
dumps). (Felipe)
72
+ . Fixed bug #60634 (Segmentation fault when trying to die() in
73
+ SessionHandler::write()). (Ilia)
74
74
75
75
- Streams:
76
76
. Fixed bug #61115 (stream related segfault on fatal error in
Original file line number Diff line number Diff line change @@ -1512,9 +1512,7 @@ static void php_session_flush(TSRMLS_D) /* {{{ */
1512
1512
{
1513
1513
if (PS (session_status ) == php_session_active ) {
1514
1514
PS (session_status ) = php_session_none ;
1515
- zend_try {
1516
- php_session_save_current_state (TSRMLS_C );
1517
- } zend_end_try ();
1515
+ php_session_save_current_state (TSRMLS_C );
1518
1516
}
1519
1517
}
1520
1518
/* }}} */
@@ -2167,7 +2165,9 @@ static PHP_RSHUTDOWN_FUNCTION(session) /* {{{ */
2167
2165
{
2168
2166
int i ;
2169
2167
2170
- php_session_flush (TSRMLS_C );
2168
+ zend_try {
2169
+ php_session_flush (TSRMLS_C );
2170
+ } zend_end_try ();
2171
2171
php_rshutdown_session_globals (TSRMLS_C );
2172
2172
2173
2173
/* this should NOT be done in php_rshutdown_session_globals() */
You can’t perform that action at this time.
0 commit comments