| To: vim-dev@vim.org |
| Subject: Patch 7.1.170 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.1.170 |
| Problem: Valgrind warning for overlapping arguments for strcpy(). |
| Solution: Use mch_memmove() instead. (Dominique Pelle) |
| Files: src/getchar.c |
| |
| |
| |
| |
| |
| *** 253,260 **** |
| return; |
| } |
| else if (buf->bh_index != 0) |
| ! STRCPY(buf->bh_first.b_next->b_str, |
| ! buf->bh_first.b_next->b_str + buf->bh_index); |
| buf->bh_index = 0; |
| |
| if (buf->bh_space >= (int)slen) |
| --- 253,261 ---- |
| return; |
| } |
| else if (buf->bh_index != 0) |
| ! mch_memmove(buf->bh_first.b_next->b_str, |
| ! buf->bh_first.b_next->b_str + buf->bh_index, |
| ! STRLEN(buf->bh_first.b_next->b_str + buf->bh_index) + 1); |
| buf->bh_index = 0; |
| |
| if (buf->bh_space >= (int)slen) |
| |
| |
| |
| *** 668,669 **** |
| --- 668,671 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 170, |
| /**/ |
| |
| -- |
| Some of the well know MS-Windows errors: |
| ESLEEP Operator fell asleep |
| ENOERR No error yet |
| EDOLLAR OS too expensive |
| EWINDOWS MS-Windows loaded, system in danger |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ download, build and distribute -- http://www.A-A-P.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |