fix bug with variables clobbered by longjmp

This commit is contained in:
Stanislav Malyshev 2006-08-08 13:12:37 +00:00
parent 7010fd0005
commit a9a858d7ad

View file

@ -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);