Patch 7.4.719
Problem: Overflow when adding MAXCOL to a pointer.
Solution: Subtract pointers instead. (James McCoy)
Files: src/screen.c
*** ../vim-7.4.718/src/screen.c 2015-04-21 18:33:33.902675797 +0200
--- src/screen.c 2015-05-04 16:02:20.530421566 +0200
***************
*** 4341,4347 ****
|| (mb_utf8 && mb_c == 160)
#endif
) && lcs_nbsp)
! || (c == ' ' && lcs_space && ptr <= line + trailcol)))
{
c = (c == ' ') ? lcs_space : lcs_nbsp;
if (area_attr == 0 && search_attr == 0)
--- 4341,4347 ----
|| (mb_utf8 && mb_c == 160)
#endif
) && lcs_nbsp)
! || (c == ' ' && lcs_space && ptr - line <= trailcol)))
{
c = (c == ' ') ? lcs_space : lcs_nbsp;
if (area_attr == 0 && search_attr == 0)
*** ../vim-7.4.718/src/version.c 2015-05-04 12:34:17.595202558 +0200
--- src/version.c 2015-05-04 16:04:11.589169466 +0200
***************
*** 743,744 ****
--- 743,746 ----
{ /* Add new patch number below this line */
+ /**/
+ 719,
/**/
--
For a moment, nothing happened.
Then, after a second or so, nothing continued to happen.
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
/// 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/d/optout.