]> granicus.if.org Git - vim/commitdiff
patch 7.4.1998 v7.4.1998
authorBram Moolenaar <Bram@vim.org>
Thu, 7 Jul 2016 18:45:06 +0000 (20:45 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 7 Jul 2016 18:45:06 +0000 (20:45 +0200)
Problem:    When writing buffer lines to a job there is no NL to NUL
            conversion.
Solution:   Make it work symmetrical with writing lines from a job into a
            buffer.

src/channel.c
src/netbeans.c
src/proto/channel.pro
src/version.c

index 1c93b6c50ef562a09ce11d6c0d83386cc1427608..bb818dcd17101ffeaf2789b87bb539e7a1e082c9 100644 (file)
@@ -1313,14 +1313,20 @@ write_buf_line(buf_T *buf, linenr_T lnum, channel_T *channel)
     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);
 }
 
@@ -2185,7 +2191,7 @@ channel_exe_cmd(channel_T *channel, int part, typval_T *argv)
                {
                    channel_send(channel,
                                 part == PART_SOCK ? PART_SOCK : PART_IN,
-                                json, (char *)cmd);
+                                json, (int)STRLEN(json), (char *)cmd);
                    vim_free(json);
                }
            }
@@ -3380,9 +3386,8 @@ channel_handle_events(void)
  * 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;
 
@@ -3470,7 +3475,7 @@ send_common(
                                       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;
index aadddc2c2d21b7d72fcf4f5da5bc608cb8f852ce..e326af8f3635926ed16a514ccd06dfd22057d37f 100644 (file)
@@ -765,7 +765,8 @@ netbeans_end(void)
 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);
 }
 
 /*
index 8a059a3a9dd205bdcbfd2cdc42433df6bc4287fb..1acae9a105e85ee0c9bad63319d03f812055fcb2 100644 (file)
@@ -34,7 +34,7 @@ int channel_read_json_block(channel_T *channel, int part, int timeout_arg, int i
 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);
index d606bab2abddc05e6de4e96f65987f88f997e1a6..368d1b8be2f88e221a2b94ac227c356212c2edf8 100644 (file)
@@ -758,6 +758,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1998,
 /**/
     1997,
 /**/