Avoid syntax injection inside code block

Co-authored-by: BenBE <BenBE@geshi.org>
This commit is contained in:
YJ Lee 2021-01-14 16:25:23 +09:00 committed by BenBE
parent e54a790b14
commit 34da6fdadb
1 changed files with 3 additions and 2 deletions

View File

@ -116,13 +116,14 @@ void InfoScreen_run(InfoScreen* this) {
} else if (mevent.y == LINES - 1) {
ch = IncSet_synthesizeEvent(this->inc, mevent.x);
}
}
#if NCURSES_MOUSE_VERSION > 1
} else if (mevent.bstate & BUTTON4_PRESSED) {
else if (mevent.bstate & BUTTON4_PRESSED) {
ch = KEY_WHEELUP;
} else if (mevent.bstate & BUTTON5_PRESSED) {
ch = KEY_WHEELDOWN;
#endif
}
#endif
}
}