1
0
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:
Stanislav Malyshev
2006-08-08 13:10:46 +00:00
parent 2c00988f17
commit 38eaacafdf
+3 -3
View File
@@ -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 \