mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
fix bug with variables clobbered by longjmp
This commit is contained in:
@@ -438,12 +438,12 @@ static void php_apache_request_dtor(request_rec *r 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 \
|
||||
|
||||
Reference in New Issue
Block a user