Bugfix for bindings error

This commit is contained in:
Bruce Hill 2022-04-06 13:37:32 -04:00
parent db7c5f670f
commit b42a7a1853

3
bb.c
View File

@ -684,7 +684,8 @@ static void run_bbcmd(bb_t *bb, const char *cmd)
if (b->key == keyval) {
delete((char**)&b->description);
delete((char**)&b->script);
memmove(b, b+1, (size_t)(&bindings[LEN(bindings)] - (b+1)));
int i = (int)(b - bindings);
memmove(&bindings[i], &bindings[i+1], sizeof(binding_t)*(LEN(bindings) - i - 1));
memset(&bindings[LEN(bindings)-1], 0, sizeof(binding_t));
}
}