summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-12-18 17:52:59 +0000
committerStefan Fritsch <sf@apache.org>2011-12-18 17:52:59 +0000
commit76f782e188d21d329d242cf3660315e95a68043b (patch)
tree99d3eb019f81282d5b6b93337349973467262b4b /os
parent42c9e0b3936fbc1daa0e935aa0f95d32a0c42985 (diff)
downloadhttpd-76f782e188d21d329d242cf3660315e95a68043b.tar.gz
Various code cleanup to avoid compiler, cppcheck, or clang warnings:
modules/debugging/mod_firehose.c: Make some internal functions static (to do: logs_cleanup() is unused) modules/filters/mod_charset_lite.c: Remove dead assignments modules/filters/mod_include.c: likewise modules/metadata/mod_usertrack.c: likewise modules/proxy/mod_proxy_ftp.c: likewise modules/ssl/ssl_engine_pphrase.c: likewise modules/proxy/mod_proxy_balancer.c: likewise; Remove NULL check that can never happen modules/proxy/proxy_util.c: Axe NULL-check that can never happen and if it would, it would just mask another bug os/unix/unixd.c: likewise modules/http/http_filters.c: Remove sub-condition that is always true modules/lua/mod_lua.c: Add default cases to switch statements modules/generators/mod_autoindex.c: Unsigned value can never be < 0 server/util_expr_eval.c: Fix compiler warnings with VC and on OS2 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1220493 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/unix/unixd.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/os/unix/unixd.c b/os/unix/unixd.c
index 360b935686..2a953f0f38 100644
--- a/os/unix/unixd.c
+++ b/os/unix/unixd.c
@@ -165,11 +165,8 @@ static apr_status_t ap_unix_create_privileged_process(
}
i = 0;
- if (args) {
- while (args[i]) {
- i++;
- }
- }
+ while (args[i])
+ i++;
/* allocate space for 4 new args, the input args, and a null terminator */
newargs = apr_palloc(p, sizeof(char *) * (i + 4));
newprogname = SUEXEC_BIN;