Skip to content
Open
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
3 changes: 3 additions & 0 deletions libcli.c
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,9 @@ static void cli_free_command(struct cli_def *cli, struct cli_command *cmd) {
if (cmd->next) {
cmd->next->previous = cmd->previous;
}
if (cmd->parent && cmd == cmd->parent->children) {
cmd->parent->children = cmd->next;
}
}
free(cmd);
}
Expand Down