mirror of
https://github.com/neovim/neovim.git
synced 2026-07-31 04:39:07 +00:00
CID 651340: Security best practices violations (STRING_OVERFLOW)
/src/nvim/keycodes.c: 383 in get_special_key()
377 data->key = *s;
378 data->key_alt = (String){ NULL, 0 };
379 }
380 }
381
382 if ((int)s->size + idx + 2 <= MAX_KEY_NAME_LEN) {
>>> CID 651340: Security best practices violations (STRING_OVERFLOW)
>>> You might overrun the 33-character fixed-size string "string + idx" by copying "s->data" without checking the length.
383 STRCPY(string + idx, s->data);
384 idx += (int)s->size;
385 }
386 }
387 string[idx++] = '>';
388 string[idx] = NUL;