mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
coverity/125476: RI: Null pointer dereference
This commit is contained in:
parent
e1d81178cc
commit
c15e796211
@ -10786,15 +10786,15 @@ static void f_globpath(typval_T *argvars, typval_T *rettv)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* "glob2regpat()" function
|
||||
*/
|
||||
// "glob2regpat()" function
|
||||
static void f_glob2regpat(typval_T *argvars, typval_T *rettv)
|
||||
{
|
||||
char_u *pat = get_tv_string_chk(&argvars[0]);
|
||||
char_u *pat = get_tv_string_chk(&argvars[0]); // NULL on type error
|
||||
|
||||
rettv->v_type = VAR_STRING;
|
||||
rettv->vval.v_string = file_pat_to_reg_pat(pat, NULL, NULL, FALSE);
|
||||
rettv->vval.v_string = (pat == NULL)
|
||||
? NULL
|
||||
: file_pat_to_reg_pat(pat, NULL, NULL, false);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -69,6 +69,12 @@ static char *features[] = {
|
||||
|
||||
// clang-format off
|
||||
static int included_patches[] = {
|
||||
1081,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1055,
|
||||
// 1054,
|
||||
// 1053,
|
||||
|
Loading…
Reference in New Issue
Block a user