| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.897 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.4.897 |
| Problem: Freeze and crash when there is a sleep in a remote command. |
| (Karl Yngve LervÄg) |
| Solution: Remove a message from the queue before dealing with it. (James |
| Kolb) |
| Files: src/if_xcmdsrv.c |
| |
| |
| |
| |
| |
| *** 1235,1243 **** |
| while (head.next != NULL && head.next != &head) |
| { |
| node = head.next; |
| - server_parse_message(X_DISPLAY, node->propInfo, node->len); |
| head.next = node->next; |
| node->next->prev = node->prev; |
| vim_free(node); |
| } |
| } |
| --- 1235,1243 ---- |
| while (head.next != NULL && head.next != &head) |
| { |
| node = head.next; |
| head.next = node->next; |
| node->next->prev = node->prev; |
| + server_parse_message(X_DISPLAY, node->propInfo, node->len); |
| vim_free(node); |
| } |
| } |
| |
| |
| |
| *** 743,744 **** |
| --- 743,746 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 897, |
| /**/ |
| |
| -- |
| hundred-and-one symptoms of being an internet addict: |
| 34. You laugh at people with a 10 Mbit connection. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |