diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-01-01 20:12:55 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-01-01 20:12:55 +0000 |
commit | 488500acfbaf276aa441c4999bff61c1af1e8ca3 (patch) | |
tree | b1b1bc60a5b92d98c74f093619cd1f3b5874d1c1 /sapi/apache2handler/php_functions.c | |
parent | 64a7e465066dd526ea78d3ccae96856d76e79de2 (diff) | |
download | php-git-488500acfbaf276aa441c4999bff61c1af1e8ca3.tar.gz |
Added safety checks
Diffstat (limited to 'sapi/apache2handler/php_functions.c')
-rw-r--r-- | sapi/apache2handler/php_functions.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sapi/apache2handler/php_functions.c b/sapi/apache2handler/php_functions.c index 557a109964..f6a0cab4d3 100644 --- a/sapi/apache2handler/php_functions.c +++ b/sapi/apache2handler/php_functions.c @@ -58,13 +58,11 @@ php_apache2_info_struct php_apache2_info; static request_rec *php_apache_lookup_uri(char *filename TSRMLS_DC) { - php_struct *ctx; + php_struct *ctx = SG(server_context); - if (!filename) { + if (!filename || !ctx || !ctx->r) { return NULL; } - - ctx = SG(server_context); return ap_sub_req_lookup_uri(filename, ctx->r, ctx->r->output_filters); } |