comparison src/normal.c @ 29340:fba9e366ced4 v9.0.0013

patch 9.0.0013: reproducing memory access errors can be difficult Commit: https://github.com/vim/vim/commit/fa4873ccfc10e0f278dc46f39d00136fab059b19 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 30 22:13:59 2022 +0100 patch 9.0.0013: reproducing memory access errors can be difficult Problem: Reproducing memory access errors can be difficult. Solution: When testing, copy each line to allocated memory, so that valgrind can detect accessing memory before and/or after it. Fix uncovered problems.
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 Jun 2022 23:15:03 +0200
parents 432e1535ef2c
children 44bb4a607125
comparison
equal deleted inserted replaced
29339:a023e3008ae3 29340:fba9e366ced4
5118 { 5118 {
5119 ptr = ml_get(pos.lnum); 5119 ptr = ml_get(pos.lnum);
5120 count = (int)STRLEN(ptr) - pos.col; 5120 count = (int)STRLEN(ptr) - pos.col;
5121 netbeans_removed(curbuf, pos.lnum, pos.col, 5121 netbeans_removed(curbuf, pos.lnum, pos.col,
5122 (long)count); 5122 (long)count);
5123 // line may have been flushed, get it again
5124 ptr = ml_get(pos.lnum);
5123 netbeans_inserted(curbuf, pos.lnum, pos.col, 5125 netbeans_inserted(curbuf, pos.lnum, pos.col,
5124 &ptr[pos.col], count); 5126 &ptr[pos.col], count);
5125 } 5127 }
5126 pos.col = 0; 5128 pos.col = 0;
5127 pos.lnum++; 5129 pos.lnum++;