char_u *line = ml_get_buf(buf, lnum, FALSE);
int len = (int)STRLEN(line);
char_u *p;
+ int i;
/* Need to make a copy to be able to append a NL. */
if ((p = alloc(len + 2)) == NULL)
return;
memcpy((char *)p, (char *)line, len);
+
+ for (i = 0; i < len; ++i)
+ if (p[i] == NL)
+ p[i] = NUL;
+
p[len] = NL;
p[len + 1] = NUL;
- channel_send(channel, PART_IN, p, "write_buf_line()");
+ channel_send(channel, PART_IN, p, len + 1, "write_buf_line()");
vim_free(p);
}
{
channel_send(channel,
part == PART_SOCK ? PART_SOCK : PART_IN,
- json, (char *)cmd);
+ json, (int)STRLEN(json), (char *)cmd);
vim_free(json);
}
}
* Return FAIL or OK.
*/
int
-channel_send(channel_T *channel, int part, char_u *buf, char *fun)
+channel_send(channel_T *channel, int part, char_u *buf, int len, char *fun)
{
- int len = (int)STRLEN(buf);
int res;
sock_T fd;
opt->jo_callback, opt->jo_partial, id);
}
- if (channel_send(channel, part_send, text, fun) == OK
+ if (channel_send(channel, part_send, text, (int)STRLEN(text), fun) == OK
&& opt->jo_callback == NULL)
return channel;
return NULL;
nb_send(char *buf, char *fun)
{
if (nb_channel != NULL)
- channel_send(nb_channel, PART_SOCK, (char_u *)buf, fun);
+ channel_send(nb_channel, PART_SOCK, (char_u *)buf,
+ (int)STRLEN(buf), fun);
}
/*
void common_channel_read(typval_T *argvars, typval_T *rettv, int raw);
channel_T *channel_fd2channel(sock_T fd, int *partp);
void channel_handle_events(void);
-int channel_send(channel_T *channel, int part, char_u *buf, char *fun);
+int channel_send(channel_T *channel, int part, char_u *buf, int len, char *fun);
channel_T *send_common(typval_T *argvars, char_u *text, int id, int eval, jobopt_T *opt, char *fun, int *part_read);
void ch_expr_common(typval_T *argvars, typval_T *rettv, int eval);
void ch_raw_common(typval_T *argvars, typval_T *rettv, int eval);