1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Merge pull request #52436 from daniel-mcclintock/fix-out-of-bounds-completion-crash

Fix crash during completion lookback
This commit is contained in:
Max Hilbrunner
2021-09-07 19:25:40 +02:00
committed by GitHub

View File

@@ -2744,7 +2744,7 @@ void CodeEdit::_filter_code_completion_candidates_impl() {
/* If we have a space, previous word might be a keyword. eg "func |". */
} else if (cofs > 0 && line[cofs - 1] == ' ') {
int ofs = cofs - 1;
while (ofs >= 0 && line[ofs] == ' ') {
while (ofs > 0 && line[ofs] == ' ') {
ofs--;
}
prev_is_word = _is_char(line[ofs]);