mirror of
https://github.com/neovim/neovim.git
synced 2026-03-30 20:32:08 +00:00
vim-patch:8.2.4637: warning for using uninitialized variable
Problem: Warning for using uninitialized variable. (Tony Mechelynck)
Solution: Initialize it.
565d1278cb
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -2511,7 +2511,7 @@ static char *ex_range_without_command(exarg_T *eap)
|
||||
/// @return FAIL when the command is not to be executed.
|
||||
int parse_command_modifiers(exarg_T *eap, const char **errormsg, cmdmod_T *cmod, bool skip_only)
|
||||
{
|
||||
char *cmd_start;
|
||||
char *cmd_start = NULL;
|
||||
bool has_visual_range = false;
|
||||
CLEAR_POINTER(cmod);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user