File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 8
8
. Fixed bug #80345 (PHPIZE configuration has outdated PHP_RELEASE_VERSION).
9
9
(cmb)
10
10
. Fixed bug #72964 (White space not unfolded for CC/Bcc headers). (cmb)
11
+ . Fixed bug #80362 (Running dtrace scripts can cause php to crash).
12
+ (al at coralnet dot name)
11
13
12
14
- Tidy:
13
15
. Fixed bug #77594 (ob_tidyhandler is never reset). (cmb)
Original file line number Diff line number Diff line change @@ -1309,7 +1309,9 @@ static ZEND_COLD void zend_error_va_list(
1309
1309
#ifdef HAVE_DTRACE
1310
1310
if (DTRACE_ERROR_ENABLED ()) {
1311
1311
char * dtrace_error_buffer ;
1312
- zend_vspprintf (& dtrace_error_buffer , 0 , format , args );
1312
+ va_copy (usr_copy , args );
1313
+ zend_vspprintf (& dtrace_error_buffer , 0 , format , usr_copy );
1314
+ va_end (usr_copy );
1313
1315
DTRACE_ERROR (dtrace_error_buffer , (char * )error_filename , error_lineno );
1314
1316
efree (dtrace_error_buffer );
1315
1317
}
You can’t perform that action at this time.
0 commit comments