mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
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.
This commit is contained in:
@@ -2741,13 +2741,15 @@ netbeans_inserted(
|
||||
if (nbbuf->insertDone)
|
||||
nbbuf->modified = 1;
|
||||
|
||||
// send the "insert" EVT
|
||||
newtxt = alloc(newlen + 1);
|
||||
vim_strncpy(newtxt, txt, newlen);
|
||||
|
||||
// Note: this may make "txt" invalid
|
||||
pos.lnum = linenr;
|
||||
pos.col = col;
|
||||
off = pos2off(bufp, &pos);
|
||||
|
||||
// send the "insert" EVT
|
||||
newtxt = alloc(newlen + 1);
|
||||
vim_strncpy(newtxt, txt, newlen);
|
||||
p = nb_quote(newtxt);
|
||||
if (p != NULL)
|
||||
{
|
||||
|
Reference in New Issue
Block a user