From 25ec6efa6337a4feff8ad7f1ca8d9008c38b9947 Mon Sep 17 00:00:00 2001 From: phk Date: Tue, 29 Jan 2008 11:39:27 +0000 Subject: [PATCH] Flexelint inspired polishing git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2399 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishd/flint.lnt | 2 +- varnish-cache/bin/varnishd/mgt_vcc.c | 61 ++++++++++++++-------------- 2 files changed, 32 insertions(+), 31 deletions(-) diff --git a/varnish-cache/bin/varnishd/flint.lnt b/varnish-cache/bin/varnishd/flint.lnt index 1e2a1447..37e5ebd4 100644 --- a/varnish-cache/bin/varnishd/flint.lnt +++ b/varnish-cache/bin/varnishd/flint.lnt @@ -1,4 +1,4 @@ --passes=3 +-passes=8 +libh mgt_event.h +libh ../../config.h diff --git a/varnish-cache/bin/varnishd/mgt_vcc.c b/varnish-cache/bin/varnishd/mgt_vcc.c index 92a7ffc0..f81a496e 100644 --- a/varnish-cache/bin/varnishd/mgt_vcc.c +++ b/varnish-cache/bin/varnishd/mgt_vcc.c @@ -234,7 +234,7 @@ mgt_run_cc(const char *source, struct vsb *sb) of = strdup(sf); XXXAN(of); of[sizeof sf - 2] = 'o'; - vsb_new(&cmdsb, cmdline, sizeof cmdline, 0); + AN(vsb_new(&cmdsb, cmdline, sizeof cmdline, 0)); mgt_make_cc_cmd(&cmdsb, sf, of); vsb_finish(&cmdsb); AZ(vsb_overflowed(&cmdsb)); @@ -243,7 +243,7 @@ mgt_run_cc(const char *source, struct vsb *sb) if (pipe(p) < 0) { vsb_printf(sb, "%s(): pipe() failed: %s", __func__, strerror(errno)); - unlink(sf); + (void)unlink(sf); free(of); return (NULL); } @@ -262,7 +262,7 @@ mgt_run_cc(const char *source, struct vsb *sb) assert(open("/dev/null", O_RDONLY) == STDIN_FILENO); assert(dup2(p[1], STDOUT_FILENO) == STDOUT_FILENO); assert(dup2(p[1], STDERR_FILENO) == STDERR_FILENO); - execl("/bin/sh", "/bin/sh", "-c", cmdline, NULL); + (void)execl("/bin/sh", "/bin/sh", "-c", cmdline, NULL); _exit(1); } AZ(close(p[1])); @@ -272,11 +272,11 @@ mgt_run_cc(const char *source, struct vsb *sb) vsb_printf(sb, "C-Compiler said: %.*s", status, buf); } while (status > 0); AZ(close(p[0])); - unlink(sf); + (void)unlink(sf); if (waitpid(pid, &status, 0) < 0) { vsb_printf(sb, "%s(): waitpid() failed: %s", __func__, strerror(errno)); - unlink(of); + (void)unlink(of); free(of); return (NULL); } @@ -288,7 +288,7 @@ mgt_run_cc(const char *source, struct vsb *sb) vsb_printf(sb, ", signal %d", WTERMSIG(status)); if (WCOREDUMP(status)) vsb_printf(sb, ", core dumped"); - unlink(of); + (void)unlink(of); free(of); return (NULL); } @@ -298,7 +298,7 @@ mgt_run_cc(const char *source, struct vsb *sb) vsb_printf(sb, "%s(): failed to load compiled VCL program:\n %s", __func__, dlerror()); - unlink(of); + (void)unlink(of); free(of); return (NULL); } @@ -339,7 +339,7 @@ mgt_VccCompileFile(struct vsb *sb, const char *fn, int C_flag, int fd) csrc = VCC_CompileFile(sb, fn, fd); if (csrc != NULL) { if (C_flag) - fputs(csrc, stdout); + (void)fputs(csrc, stdout); vf = mgt_run_cc(csrc, sb); if (C_flag && vf != NULL) AZ(unlink(vf)); @@ -582,12 +582,10 @@ mcf_find_vcl(struct cli *cli, const char *name) VTAILQ_FOREACH(vp, &vclhead, list) if (!strcmp(vp->name, name)) - break; - if (vp == NULL) { - cli_result(cli, CLIS_PARAM); - cli_out(cli, "No configuration named %s known.", name); - } - return (vp); + return (vp); + cli_result(cli, CLIS_PARAM); + cli_out(cli, "No configuration named %s known.", name); + return (NULL); } void @@ -599,19 +597,21 @@ mcf_config_use(struct cli *cli, const char * const *av, void *priv) (void)priv; vp = mcf_find_vcl(cli, av[2]); - if (vp != NULL && vp->active == 0) { - if (child_pid >= 0 && - mgt_cli_askchild(&status, &p, "vcl.use %s\n", av[2])) { - cli_result(cli, status); - cli_out(cli, "%s", p); - } else { - vp->active = 2; - VTAILQ_FOREACH(vp, &vclhead, list) { - if (vp->active == 1) - vp->active = 0; - else if (vp->active == 2) - vp->active = 1; - } + if (vp == NULL) + return; + if (vp->active != 0) + return; + if (child_pid >= 0 && + mgt_cli_askchild(&status, &p, "vcl.use %s\n", av[2])) { + cli_result(cli, status); + cli_out(cli, "%s", p); + } else { + vp->active = 2; + VTAILQ_FOREACH(vp, &vclhead, list) { + if (vp->active == 1) + vp->active = 0; + else if (vp->active == 2) + vp->active = 1; } } free(p); @@ -652,9 +652,10 @@ mcf_config_list(struct cli *cli, const char * const *av, void *priv) (void)av; (void)priv; if (child_pid >= 0) { - mgt_cli_askchild(&status, &p, "vcl.list\n"); - cli_result(cli, status); - cli_out(cli, "%s", p); + if (!mgt_cli_askchild(&status, &p, "vcl.list\n")) { + cli_result(cli, status); + cli_out(cli, "%s", p); + } free(p); } else { VTAILQ_FOREACH(vp, &vclhead, list) { -- 2.39.5