We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84f7979 commit dd0a9c5Copy full SHA for dd0a9c5
src/eval.c
@@ -14980,7 +14980,10 @@ f_resolve(argvars, rettv)
14980
14981
len = STRLEN(p);
14982
if (len > 0 && after_pathsep(p, p + len))
14983
+ {
14984
has_trailing_pathsep = TRUE;
14985
+ p[len - 1] = NUL; /* the trailing slash breaks readlink() */
14986
+ }
14987
14988
q = getnextcomp(p);
14989
if (*q != NUL)
src/version.c
@@ -709,6 +709,8 @@ static char *(features[]) =
709
710
static int included_patches[] =
711
{ /* Add new patch number below this line */
712
+/**/
713
+ 194,
714
/**/
715
193,
716
0 commit comments