summaryrefslogtreecommitdiffstats
path: root/modules/mappers
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2010-12-30 08:41:18 +0100
committerRuediger Pluem <rpluem@apache.org>2010-12-30 08:41:18 +0100
commitabcc9f0497338d0732c005d09cb565dc6e0d8df4 (patch)
treec51ee2c7823fc7595c68abdee2feb25711fc3ca4 /modules/mappers
parentupdate transforms (diff)
downloadapache2-abcc9f0497338d0732c005d09cb565dc6e0d8df4.tar.xz
apache2-abcc9f0497338d0732c005d09cb565dc6e0d8df4.zip
* Silence compiler warning about possibly uninitialized use
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1053814 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers')
-rw-r--r--modules/mappers/mod_rewrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c
index 1b38a6c148..83ef53c386 100644
--- a/modules/mappers/mod_rewrite.c
+++ b/modules/mappers/mod_rewrite.c
@@ -3694,7 +3694,7 @@ static APR_INLINE int compare_lexicography(char *a, char *b)
*/
static int apply_rewrite_cond(rewritecond_entry *p, rewrite_ctx *ctx)
{
- char *input;
+ char *input = NULL;
apr_finfo_t sb;
request_rec *rsub, *r = ctx->r;
ap_regmatch_t regmatch[AP_MAX_REG_MATCH];