]> granicus.if.org Git - vim/commitdiff
patch 7.4.1230 v7.4.1230
authorBram Moolenaar <Bram@vim.org>
Mon, 1 Feb 2016 20:32:58 +0000 (21:32 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 1 Feb 2016 20:32:58 +0000 (21:32 +0100)
Problem:    Win32: opening a channel may hang.  Not checking for messages
            while waiting for characters.
Solution:   Add a zero timeout.  Call parse_queued_messages(). (Yasuhiro
            Matsumoto)

src/os_win32.c
src/version.c

index 9fa806e7382d2d7d7cd89327c645edf096b97bd4..fb136718842f65a8568ae385110760bd13dd6720 100644 (file)
@@ -1461,10 +1461,12 @@ WaitForChar(long msec)
      */
     for (;;)
     {
+#ifdef MESSAGE_QUEUE
+       parse_queued_messages();
+#endif
 #ifdef FEAT_MZSCHEME
        mzvim_check_threads();
 #endif
-
 #ifdef FEAT_CLIENTSERVER
        serverProcessPendingMessages();
 #endif
@@ -1474,7 +1476,11 @@ WaitForChar(long msec)
        maxfd = channel_select_setup(-1, &rfds);
        if (maxfd >= 0)
        {
-           ret = select(maxfd + 1, &rfds, NULL, NULL, NULL);
+           struct timeval  tv;
+
+           tv.tv_sec = 0;
+           tv.tv_usec = 0;
+           ret = select(maxfd + 1, &rfds, NULL, NULL, &tv);
            if (ret > 0 && channel_select_check(ret, &rfds) > 0)
                return TRUE;
        }
index 1c9cbf51b8805eb92a8947528b1d95015ede843f..61d122c4d116d2aaaf4247fa894fc781d11babf2 100644 (file)
@@ -742,6 +742,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1230,
 /**/
     1229,
 /**/