mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.3999: redundant check for NUL byte
Problem: Redundant check for NUL byte. Solution: Remove the check for a NUL byte. (closes #9471)
This commit is contained in:
@@ -3897,7 +3897,7 @@ f_fullcommand(typval_T *argvars, typval_T *rettv)
|
||||
if (name == NULL)
|
||||
return;
|
||||
|
||||
while (*name != NUL && *name == ':')
|
||||
while (*name == ':')
|
||||
name++;
|
||||
name = skip_range(name, TRUE, NULL);
|
||||
|
||||
|
Reference in New Issue
Block a user