diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-10-24 14:23:17 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2014-12-06 17:29:38 -0500 |
commit | 460843b4cd5f2bceaeac1dbc165c416b272793ed (patch) | |
tree | 00fef4d04745910808ce4ea3576d25f60acbc013 /src/nvim/api/buffer.c | |
parent | 279c519e33ec7f2b7e12cbd9a3b6c184427c881a (diff) | |
download | rneovim-460843b4cd5f2bceaeac1dbc165c416b272793ed.tar.gz rneovim-460843b4cd5f2bceaeac1dbc165c416b272793ed.tar.bz2 rneovim-460843b4cd5f2bceaeac1dbc165c416b272793ed.zip |
api: Handle NULs and newlines in buffer_*_line.
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 982003a31a..0292e82038 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -132,7 +132,12 @@ ArrayOf(String) buffer_get_line_slice(Buffer buffer, } const char *bufstr = (char *) ml_get_buf(buf, (linenr_T) lnum, false); - rv.items[i] = STRING_OBJ(cstr_to_string(bufstr)); + Object str = STRING_OBJ(cstr_to_string(bufstr)); + + // Vim represents NULs as NLs, but this may confuse clients. + strchrsub(str.data.string.data, '\n', '\0'); + + rv.items[i] = str; } end: @@ -201,7 +206,18 @@ void buffer_set_line_slice(Buffer buffer, } String l = replacement.items[i].data.string; - lines[i] = xmemdupz(l.data, l.size); + + // Fill lines[i] with l's contents. Disallow newlines in the middle of a + // line and convert NULs to newlines to avoid truncation. + lines[i] = xmallocz(l.size); + for (size_t j = 0; j < l.size; j++) { + if (l.data[j] == '\n') { + api_set_error(err, Exception, _("string cannot contain newlines")); + new_len = i + 1; + goto end; + } + lines[i][j] = (char) (l.data[j] == '\0' ? '\n' : l.data[j]); + } } try_start(); |