diff options
author | Michael Forney <mforney@mforney.org> | 2021-08-15 00:28:11 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-08-15 00:37:32 -0700 |
commit | 8755378092c00fbae007abbd3f5cb83df0f50ac2 (patch) | |
tree | 158c888785f2e94ce1b461168c0a9c8447fbe109 | |
parent | 70a532525946a28dc1ffacc542ba6a5b67aee986 (diff) | |
download | cproc-8755378092c00fbae007abbd3f5cb83df0f50ac2.tar.xz |
decl: Don't accept abstract function declarator when disallowed
When declarator() is called with allowabstract == false, the caller
can assume that it will always return the identifier being declared.
However, abstract function declarators were incorrectly accepted
in this case with name set to NULL instead of erroring out due to
invalid syntax.
To fix this, only skip forward to function declarator parsing for
abstract declarators, since this is the only case where we can't
immediately tell whether we have a parenthesized declarator or a
function declarator.
Fixes #74.
-rw-r--r-- | decl.c | 20 |
1 files changed, 11 insertions, 9 deletions
@@ -480,16 +480,18 @@ declaratortypes(struct scope *s, struct list *result, char **name, bool allowabs switch (tok.kind) { case TLPAREN: next(); - switch (tok.kind) { - case TMUL: - case TLPAREN: - break; - case TIDENT: - if (!allowabstract || !istypename(s, tok.lit)) + if (allowabstract) { + switch (tok.kind) { + case TMUL: + case TLPAREN: break; - /* fallthrough */ - default: - goto func; + case TIDENT: + if (!istypename(s, tok.lit)) + break; + /* fallthrough */ + default: + goto func; + } } declaratortypes(s, result, name, allowabstract); expect(TRPAREN, "after parenthesized declarator"); |