diff options
author | Michael Forney <mforney@mforney.org> | 2020-06-05 01:38:00 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2020-06-05 01:38:00 -0700 |
commit | ec6ec4b1d04092e7175b658d5ea884e3f3b82c81 (patch) | |
tree | 9db13ec1ac3b04177d0084b7615fc534b2b850f4 | |
parent | 38b1d570ac9f35af9b58e7ff33d61698b83384ff (diff) | |
download | cproc-ec6ec4b1d04092e7175b658d5ea884e3f3b82c81.tar.xz |
Help gcc see that variables are not used uninitialized
-rw-r--r-- | init.c | 2 | ||||
-rw-r--r-- | pp.c | 3 | ||||
-rw-r--r-- | token.c | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -163,6 +163,8 @@ focus(struct initparser *p) p->sub->mem = p->sub->type->structunion.members; t = p->sub->mem->type; break; + default: + fatal("internal error: init cursor has unexpected type"); } subobj(p, t, 0); } @@ -220,8 +220,9 @@ define(void) if (t->kind == TLPAREN && !t->space) { m->kind = MACROFUNC; /* read macro parameter names */ + p = NULL; while (scan(&tok), tok.kind != TRPAREN) { - if (params.len) { + if (p) { if (p->flags & PARAMVAR) tokencheck(&tok, TRPAREN, "after '...'"); tokencheck(&tok, TCOMMA, "or ')' after macro parameter"); @@ -143,7 +143,7 @@ static void tokendesc(char *buf, size_t len, enum tokenkind kind, const char *lit) { const char *class; - bool quote; + bool quote = true; switch (kind) { case TEOF: class = "EOF"; break; |