Commit d90d64f7 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

set the value of alloc_len properly again, as in DB's patch, in order to

avoid memory corruption problems


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2228 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -2288,7 +2288,7 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
assert(column <= start_col);
alloc_len = display_string_len(buf + start_index, start_col,
start_col + COLS);
start_col + len) + 2;
converted = charalloc(alloc_len + 1);
index = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment