mirror of
git://git.sv.gnu.org/nano.git
synced 2024-12-05 10:52:10 +03:00
fix display problem caused by the memory corruption fix
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2237 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
8ec1e2d903
commit
0251bdb0a5
@ -2470,7 +2470,13 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
|
||||
start_index += wide_buf_len;
|
||||
}
|
||||
|
||||
if (index < alloc_len)
|
||||
converted[index] = '\0';
|
||||
|
||||
/* Make sure converted takes up no more than len columns. */
|
||||
index = actual_x(converted, len);
|
||||
null_at(&converted, index);
|
||||
|
||||
return converted;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user