# HG changeset patch # User Bram Moolenaar # Date 1590486304 -7200 # Node ID 1ea55bad1234caf044827db015690d618bfd8f3e # Parent 69d7432bec0a72dd7d29292e2087a6f7371d40f2 patch 8.2.0827: Vim9: crash in :defcompile Commit: https://github.com/vim/vim/commit/285b189260e2d753454449e429f2caa17e1c39a5 Author: Bram Moolenaar Date: Tue May 26 11:37:26 2020 +0200 patch 8.2.0827: Vim9: crash in :defcompile Problem: Vim9: crash in :defcompile. Solution: Fix off-by-one error. diff --git a/src/userfunc.c b/src/userfunc.c --- a/src/userfunc.c +++ b/src/userfunc.c @@ -3348,6 +3348,7 @@ ex_defcompile(exarg_T *eap UNUSED) hi = func_hashtab.ht_array; ht_used = func_hashtab.ht_used; todo = (int)ht_used; + --hi; } } } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 827, +/**/ 826, /**/ 825,