|
Karsten Hopp |
2189c9 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
2189c9 |
Subject: Patch 7.4.748
|
|
Karsten Hopp |
2189c9 |
Fcc: outbox
|
|
Karsten Hopp |
2189c9 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
2189c9 |
Mime-Version: 1.0
|
|
Karsten Hopp |
2189c9 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
2189c9 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
2189c9 |
------------
|
|
Karsten Hopp |
2189c9 |
|
|
Karsten Hopp |
2189c9 |
Patch 7.4.748 (after 7.4.745)
|
|
Karsten Hopp |
2189c9 |
Problem: Buffer overflow.
|
|
Karsten Hopp |
2189c9 |
Solution: Make the buffer larger. (Kazunobu Kuriyama)
|
|
Karsten Hopp |
2189c9 |
Files: src/eval.c
|
|
Karsten Hopp |
2189c9 |
|
|
Karsten Hopp |
2189c9 |
|
|
Karsten Hopp |
2189c9 |
*** ../vim-7.4.747/src/eval.c 2015-06-19 16:32:52.328116933 +0200
|
|
Karsten Hopp |
2189c9 |
--- src/eval.c 2015-06-19 21:03:32.294099699 +0200
|
|
Karsten Hopp |
2189c9 |
***************
|
|
Karsten Hopp |
2189c9 |
*** 17157,17163 ****
|
|
Karsten Hopp |
2189c9 |
while (li != NULL)
|
|
Karsten Hopp |
2189c9 |
{
|
|
Karsten Hopp |
2189c9 |
int i = 0;
|
|
Karsten Hopp |
2189c9 |
! char_u buf[4];
|
|
Karsten Hopp |
2189c9 |
dictitem_T *di;
|
|
Karsten Hopp |
2189c9 |
|
|
Karsten Hopp |
2189c9 |
d = li->li_tv.vval.v_dict;
|
|
Karsten Hopp |
2189c9 |
--- 17157,17163 ----
|
|
Karsten Hopp |
2189c9 |
while (li != NULL)
|
|
Karsten Hopp |
2189c9 |
{
|
|
Karsten Hopp |
2189c9 |
int i = 0;
|
|
Karsten Hopp |
2189c9 |
! char_u buf[5];
|
|
Karsten Hopp |
2189c9 |
dictitem_T *di;
|
|
Karsten Hopp |
2189c9 |
|
|
Karsten Hopp |
2189c9 |
d = li->li_tv.vval.v_dict;
|
|
Karsten Hopp |
2189c9 |
*** ../vim-7.4.747/src/version.c 2015-06-19 18:35:29.683602295 +0200
|
|
Karsten Hopp |
2189c9 |
--- src/version.c 2015-06-19 21:05:18.868995774 +0200
|
|
Karsten Hopp |
2189c9 |
***************
|
|
Karsten Hopp |
2189c9 |
*** 743,744 ****
|
|
Karsten Hopp |
2189c9 |
--- 743,746 ----
|
|
Karsten Hopp |
2189c9 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
2189c9 |
+ /**/
|
|
Karsten Hopp |
2189c9 |
+ 748,
|
|
Karsten Hopp |
2189c9 |
/**/
|
|
Karsten Hopp |
2189c9 |
|
|
Karsten Hopp |
2189c9 |
--
|
|
Karsten Hopp |
2189c9 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
2189c9 |
121. You ask for e-mail adresses instead of telephone numbers.
|
|
Karsten Hopp |
2189c9 |
|
|
Karsten Hopp |
2189c9 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
2189c9 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
2189c9 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
2189c9 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|