mirror of
https://github.com/neovim/neovim.git
synced 2025-12-24 07:09:05 +00:00
refactor: fix clang and PVS warnings (#19569)
The last commit didn't actually disable V1028 because of a typo. Fix the typo so it is actually disabled.
This commit is contained in:
@@ -1268,7 +1268,7 @@ void free_all_functions(void)
|
||||
// Clean up the current_funccal chain and the funccal stack.
|
||||
while (current_funccal != NULL) {
|
||||
tv_clear(current_funccal->rettv);
|
||||
cleanup_function_call(current_funccal);
|
||||
cleanup_function_call(current_funccal); // -V595
|
||||
if (current_funccal == NULL && funccal_stack != NULL) {
|
||||
restore_funccal();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user