mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07:00
fix(api): nvim_eval_statusline should validate input #18347
Fix #18112 Make an exception for strings starting with "%!".
This commit is contained in:
parent
19da1071dc
commit
0a3d615b1c
@ -2276,6 +2276,14 @@ Dictionary nvim_eval_statusline(String str, Dict(eval_statusline) *opts, Error *
|
||||
bool use_tabline = false;
|
||||
bool highlights = false;
|
||||
|
||||
if (str.size < 2 || memcmp(str.data, "%!", 2)) {
|
||||
const char *const errmsg = check_stl_option((char_u *)str.data);
|
||||
if (errmsg) {
|
||||
api_set_error(err, kErrorTypeValidation, "%s", errmsg);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
if (HAS_KEY(opts->winid)) {
|
||||
if (opts->winid.type != kObjectTypeInteger) {
|
||||
api_set_error(err, kErrorTypeValidation, "winid must be an integer");
|
||||
|
@ -3044,6 +3044,10 @@ describe('API', function()
|
||||
eq('fillchar must be a single character',
|
||||
pcall_err(meths.eval_statusline, '', { fillchar = 1 }))
|
||||
end)
|
||||
it('rejects invalid string', function()
|
||||
eq('E539: Illegal character <}>',
|
||||
pcall_err(meths.eval_statusline, '%{%}', {}))
|
||||
end)
|
||||
describe('highlight parsing', function()
|
||||
it('works', function()
|
||||
eq({
|
||||
|
Loading…
Reference in New Issue
Block a user