comparison src/userfunc.c @ 20546:1ea55bad1234 v8.2.0827

patch 8.2.0827: Vim9: crash in :defcompile Commit: https://github.com/vim/vim/commit/285b189260e2d753454449e429f2caa17e1c39a5 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 May 2020 11:45:04 +0200
parents e8132bec4b0f
children a2262c80a4e0
comparison
equal deleted inserted replaced
20545:69d7432bec0a 20546:1ea55bad1234
3346 { 3346 {
3347 // another function has been defined, need to start over 3347 // another function has been defined, need to start over
3348 hi = func_hashtab.ht_array; 3348 hi = func_hashtab.ht_array;
3349 ht_used = func_hashtab.ht_used; 3349 ht_used = func_hashtab.ht_used;
3350 todo = (int)ht_used; 3350 todo = (int)ht_used;
3351 --hi;
3351 } 3352 }
3352 } 3353 }
3353 } 3354 }
3354 } 3355 }
3355 } 3356 }