From 46fe47b8e0ad8069bb3736d2aa3e78befdccb38d Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Fri, 23 Jun 2023 16:04:55 +0200 Subject: [PATCH] debug: add backtraces --- lib/config/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config/config.c b/lib/config/config.c index 5531e431d..1c074abe8 100644 --- a/lib/config/config.c +++ b/lib/config/config.c @@ -741,13 +741,13 @@ static struct dm_config_value *_get_def_array_values(struct cmd_context *cmd, } /* Proper value always starts with '#'. */ if (token[0] != '#') - goto bad; + goto_bad; while (token) { /* Move to type identifier. Error on no char. */ token++; if (!token[0]) - goto bad; + goto_bad; /* Move to the actual value and decode any "##" into "#". */ p = token + 1; -- 2.43.5