tweak the charealloc() in do_output() to more closely match the old

charealloc() in do_char(), to avoid another memory corruption problem


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2229 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2005-01-04 04:02:45 +00:00
parent d90d64f718
commit b6fbdd00cf
1 changed files with 1 additions and 1 deletions

View File

@ -3643,7 +3643,7 @@ void do_output(int *kbinput, size_t kbinput_len)
/* More dangerousness fun =) */
current->data = charealloc(current->data,
current_len + key_len + 1);
current_len + key_len + 2);
assert(current_x <= current_len);