Patch 7.4.054
Problem: Reading past end of the 'stl' string.
Solution: Don't increment pointer when already at the NUL. (Christian
Brabandt)
Files: src/buffer.c
*** ../vim-7.4.053/src/buffer.c 2013-08-14 17:11:14.000000000 +0200
--- src/buffer.c 2013-11-02 04:34:26.000000000 +0100
***************
*** 4062,4068 ****
item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
curitem++;
}
! ++s;
continue;
}
--- 4062,4069 ----
item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
curitem++;
}
! if (*s != NUL)
! ++s;
continue;
}
*** ../vim-7.4.053/src/version.c 2013-11-02 04:19:10.000000000 +0100
--- src/version.c 2013-11-02 04:31:50.000000000 +0100
***************
*** 740,741 ****
--- 740,743 ----
{ /* Add new patch number below this line */
+ /**/
+ 54,
/**/
--
Every person is responsible for the choices he makes.
/// Bram Moolenaar -- [email protected] -- 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 ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.