summaryrefslogtreecommitdiffstats
path: root/src/parser_bison.y
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2023-06-19 22:43:03 +0200
committerFlorian Westphal <fw@strlen.de>2023-06-20 21:44:52 +0200
commitbb16416ec82599e41043a52887c37157e6f61984 (patch)
treec3e4f05777ef2cd8f6719f703a7dadf13ed232ca /src/parser_bison.y
parent75217cb7bb78e22fc9317116353149def8a306e9 (diff)
parser: don't assert on scope underflows
close_scope() gets called from the object destructors; imbalance can cause us to hit assert(). Before: nft: parser_bison.y:88: close_scope: Assertion `state->scope > 0' failed. After: assertion3:4:7-7: Error: too many levels of nesting jump { assertion3:5:8-8: Error: too many levels of nesting jump assertion3:5:9-9: Error: syntax error, unexpected newline, expecting '{' assertion3:7:1-1: Error: syntax error, unexpected end of file Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'src/parser_bison.y')
-rw-r--r--src/parser_bison.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parser_bison.y b/src/parser_bison.y
index 763c1b2d..f5f6bf04 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -80,12 +80,11 @@ static int open_scope(struct parser_state *state, struct scope *scope)
static void close_scope(struct parser_state *state)
{
- if (state->scope_err) {
+ if (state->scope_err || state->scope == 0) {
state->scope_err = false;
return;
}
- assert(state->scope > 0);
state->scope--;
}