Skip to content
Snippets Groups Projects
Commit a00f8841 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix macro recusion protection for macros 32-63.

Found by MSVC
parent a26b1340
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -3516,12 +3516,12 @@ static void do_ansi(struct cterminal *cterm, char *retbuf, size_t retsize, int *
else if (strcmp(seq->ctrl_func, "*z") == 0) {
if (seq->param_count > 0 && seq->param_int[0] <= 63) {
if (cterm->macros[seq->param_int[0]]) {
if ((cterm->in_macro & (1<<seq->param_int[0])) == 0) {
if ((cterm->in_macro & (UINT64_C(1)<<seq->param_int[0])) == 0) {
cterm->escbuf[0]=0;
cterm->sequence=0;
cterm->in_macro |= (1<<seq->param_int[0]);
cterm->in_macro |= (UINT64_C(1)<<seq->param_int[0]);
cterm_write(cterm, cterm->macros[seq->param_int[0]], cterm->macro_lens[seq->param_int[0]], retbuf + strlen(retbuf), retsize - strlen(retbuf), speed);
cterm->in_macro &= ~(1<<seq->param_int[0]);
cterm->in_macro &= ~(UINT64_C(1)<<seq->param_int[0]);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment