1
0
forked from aniani/vim

patch 8.2.5077: various warnings from clang on MS-Windows

Problem:    Various warnings from clang on MS-Windows.
Solution:   Avoid the warnings. (Yegappan Lakshmanan, closes #10553)
This commit is contained in:
Yegappan Lakshmanan
2022-06-11 10:43:26 +01:00
committed by Bram Moolenaar
parent 2e7cba347f
commit a34b4460c2
7 changed files with 24 additions and 18 deletions

View File

@@ -1351,6 +1351,9 @@ expand_env_esc(
int mustfree; // var was allocated, need to free it later
int at_start = TRUE; // at start of a name
int startstr_len = 0;
#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
char_u *save_dst = dst;
#endif
if (startstr != NULL)
startstr_len = (int)STRLEN(startstr);
@@ -1575,7 +1578,7 @@ expand_env_esc(
// with it, skip a character
if (after_pathsep(dst, dst + c)
#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
&& dst[-1] != ':'
&& (dst == save_dst || dst[-1] != ':')
#endif
&& vim_ispathsep(*tail))
++tail;