| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.903 |
| 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.903 |
| Problem: MS-Windows: When 'encoding' differs from the current code page, |
| expandinig wildcards may cause illegal memory access. |
| Solution: Allocate a longer buffer. (Ken Takata) |
| Files: src/misc1.c |
| |
| |
| |
| |
| |
| *** 9940,9947 **** |
| return 0; |
| } |
| |
| ! /* make room for file name */ |
| ! buf = alloc((int)STRLEN(path) + BASENAMELEN + 5); |
| if (buf == NULL) |
| return 0; |
| |
| --- 9940,9948 ---- |
| return 0; |
| } |
| |
| ! /* Make room for file name. When doing encoding conversion the actual |
| ! * length may be quite a bit longer, thus use the maximum possible length. */ |
| ! buf = alloc((int)MAXPATHL); |
| if (buf == NULL) |
| return 0; |
| |
| |
| |
| |
| *** 743,744 **** |
| --- 743,746 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 903, |
| /**/ |
| |
| -- |
| hundred-and-one symptoms of being an internet addict: |
| 65. The last time you looked at the clock it was 11:30pm, and in what |
| seems like only a few seconds later, your sister runs past you to |
| catch her 7am school bus. |
| |
| /// 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 /// |