mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
Merge pull request #18452 from dundargoc/vim-8.2.4469
vim-patch:8.2.4469: Coverity warns for uninitialized variable
This commit is contained in:
@@ -6632,7 +6632,7 @@ void get_user_input(const typval_T *const argvars, typval_T *const rettv, const
|
|||||||
// input() with a third argument: completion
|
// input() with a third argument: completion
|
||||||
const int xp_namelen = (int)strlen(xp_name);
|
const int xp_namelen = (int)strlen(xp_name);
|
||||||
|
|
||||||
uint32_t argt;
|
uint32_t argt = 0;
|
||||||
if (parse_compl_arg(xp_name, xp_namelen, &xp_type,
|
if (parse_compl_arg(xp_name, xp_namelen, &xp_type,
|
||||||
&argt, &xp_arg) == FAIL) {
|
&argt, &xp_arg) == FAIL) {
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user