mirror of
https://github.com/neovim/neovim
synced 2025-07-16 09:11:51 +00:00
fix(coverity/471380): null dereference in get_local_additions()
strrchr returns null pointer if '.' is not present in file name. Notice that filenames are filtered to match "doc/*.??[tx]" pattern earlier so we shouldn't expect null pointer here. However later in code strrchr return value is checked so it seems better and more consistent to do the same here too.
This commit is contained in:
@ -701,6 +701,9 @@ void get_local_additions(void)
|
||||
const char *const f1 = fnames[i1];
|
||||
const char *const t1 = path_tail(f1);
|
||||
const char *const e1 = strrchr(t1, '.');
|
||||
if (e1 == NULL) {
|
||||
continue;
|
||||
}
|
||||
if (path_fnamecmp(e1, ".txt") != 0
|
||||
&& path_fnamecmp(e1, fname + 4) != 0) {
|
||||
// Not .txt and not .abx, remove it.
|
||||
@ -715,7 +718,7 @@ void get_local_additions(void)
|
||||
}
|
||||
const char *const t2 = path_tail(f2);
|
||||
const char *const e2 = strrchr(t2, '.');
|
||||
if (e1 == NULL || e2 == NULL) {
|
||||
if (e2 == NULL) {
|
||||
continue;
|
||||
}
|
||||
if (e1 - f1 != e2 - f2
|
||||
|
Reference in New Issue
Block a user