Skip to content

Commit

Permalink
patch 9.0.0113: has() is not strict about parsing the patch version
Browse files Browse the repository at this point in the history
Problem:    has() is not strict about parsing the patch version.
Solution:   Check the version more strictly. (Ken Takata, closes #10752)
  • Loading branch information
k-takata authored and brammool committed Jul 30, 2022
1 parent 0f823c3 commit d90f91f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 12 deletions.
31 changes: 19 additions & 12 deletions src/evalfunc.c
Original file line number Diff line number Diff line change
Expand Up @@ -6458,19 +6458,26 @@ f_has(typval_T *argvars, typval_T *rettv)
x = TRUE;
if (name[5] == '-'
&& STRLEN(name) >= 11
&& vim_isdigit(name[6])
&& vim_isdigit(name[8])
&& vim_isdigit(name[10]))
&& (name[6] >= '1' && name[6] <= '9'))
{
int major = atoi((char *)name + 6);
int minor = atoi((char *)name + 8);

// Expect "patch-9.9.01234".
n = (major < VIM_VERSION_MAJOR
|| (major == VIM_VERSION_MAJOR
&& (minor < VIM_VERSION_MINOR
|| (minor == VIM_VERSION_MINOR
&& has_patch(atoi((char *)name + 10))))));
char *end;
int major, minor;

// This works for patch-8.1.2, patch-9.0.3, patch-10.0.4, etc.
// Not for patch-9.10.5.
major = (int)strtoul((char *)name + 6, &end, 10);
if (*end == '.' && vim_isdigit(end[1])
&& end[2] == '.' && vim_isdigit(end[3]))
{
minor = atoi(end + 1);

// Expect "patch-9.9.01234".
n = (major < VIM_VERSION_MAJOR
|| (major == VIM_VERSION_MAJOR
&& (minor < VIM_VERSION_MINOR
|| (minor == VIM_VERSION_MINOR
&& has_patch(atoi(end + 3))))));
}
}
else if (isdigit(name[5]))
n = has_patch(atoi((char *)name + 5));
Expand Down
9 changes: 9 additions & 0 deletions src/testdir/test_expr.vim
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,22 @@ func Test_version()
call assert_true(has('patch-6.9.999'))
call assert_true(has('patch-7.1.999'))
call assert_true(has('patch-7.4.123'))
call assert_true(has('patch-7.4.123 ')) " Traling space can be allowed.

call assert_false(has('patch-7'))
call assert_false(has('patch-7.4'))
call assert_false(has('patch-7.4.'))
call assert_false(has('patch-9.1.0'))
call assert_false(has('patch-9.9.1'))

call assert_false(has('patch-abc'))
call assert_false(has('patchabc'))

call assert_false(has('patch-8x001'))
call assert_false(has('patch-9X0X0'))
call assert_false(has('patch-9-0-0'))
call assert_false(has('patch-09.0.0'))
call assert_false(has('patch-9.00.0'))
endfunc

func Test_op_ternary()
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
113,
/**/
112,
/**/
Expand Down

0 comments on commit d90f91f

Please sign in to comment.