Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions drivers/mge-xml.c
Original file line number Diff line number Diff line change
Expand Up @@ -1361,8 +1361,12 @@ static int mge_xml_startelm_cb(void *userdata, int parent, const char *nspace, c
state = XC_GENERAL;
break;
}
/* FIXME? Is the fall-through to handling "GENERAL" intended?
* was so in legacy code before the goto below... */
goto fallthrough_case_general;

case XC_GENERAL:
fallthrough_case_general:
if (!strcasecmp(name, "STARTUP")) {
/* config="CENTRALIZED" */
state = XC_STARTUP;
Expand Down