mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
fix bug with variables clobbered by longjmp
This commit is contained in:
parent
7010fd0005
commit
a9a858d7ad
1 changed files with 3 additions and 3 deletions
|
@ -460,12 +460,12 @@ static void php_apache_ini_dtor(request_rec *r, request_rec *p TSRMLS_DC)
|
|||
|
||||
static int php_handler(request_rec *r)
|
||||
{
|
||||
php_struct *ctx;
|
||||
php_struct * volatile ctx;
|
||||
void *conf;
|
||||
apr_bucket_brigade *brigade;
|
||||
apr_bucket_brigade * volatile brigade;
|
||||
apr_bucket *bucket;
|
||||
apr_status_t rv;
|
||||
request_rec *parent_req = NULL;
|
||||
request_rec * volatile parent_req = NULL;
|
||||
TSRMLS_FETCH();
|
||||
|
||||
#define PHPAP_INI_OFF php_apache_ini_dtor(r, parent_req TSRMLS_CC);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue