diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-11-11 20:04:09 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-11-11 20:04:09 +0000 |
commit | d2564b401e858647f587a5b5d3aa97ec0c16137e (patch) | |
tree | b86a508104c9cda3149f5d1cb9eb0a5a7113e117 | |
parent | e480d10021558ebb3fb427baeb503354a0799dd7 (diff) | |
download | php-git-d2564b401e858647f587a5b5d3aa97ec0c16137e.tar.gz |
Compiler warning fix (patch by Joe Orton).
-rw-r--r-- | sapi/apache2handler/php_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2handler/php_functions.c b/sapi/apache2handler/php_functions.c index e27447df26..05b1889398 100644 --- a/sapi/apache2handler/php_functions.c +++ b/sapi/apache2handler/php_functions.c @@ -261,8 +261,8 @@ PHP_FUNCTION(apache_setenv) ctx = SG(server_context); + r = ctx->r; if (arg_count == 3 && Z_STRVAL_PP(walk_to_top)) { - r = ctx->r; while(r->prev) { r = r->prev; } |