diff options
author | Eric Covener <covener@apache.org> | 2020-11-08 23:23:16 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2020-11-08 23:23:16 +0100 |
commit | 0081a34d1fcf0ff4b92ae845506551f6aabd791f (patch) | |
tree | 1707491f2a16a1e30ce5613bb4971cb83ddf25d5 /modules/aaa | |
parent | Need to tickle travis after r1883209 in Apache::Test so might as well enable ... (diff) | |
download | apache2-0081a34d1fcf0ff4b92ae845506551f6aabd791f.tar.xz apache2-0081a34d1fcf0ff4b92ae845506551f6aabd791f.zip |
-Werror=maybe-uninitialized issue
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1883214 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/aaa')
-rw-r--r-- | modules/aaa/mod_allowmethods.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aaa/mod_allowmethods.c b/modules/aaa/mod_allowmethods.c index 7e490593c6..2d0a823bc1 100644 --- a/modules/aaa/mod_allowmethods.c +++ b/modules/aaa/mod_allowmethods.c @@ -143,7 +143,7 @@ static const char *am_allowmethods(cmd_parms *cmd, void *d, int argc, int merge = 0; int first = 1; char *method; - char action; + char action = '\0'; if (argc == 0) { return "AllowMethods: No method or 'reset' keyword given"; |