mirror of
git://slackware.nl/current.git
synced 2025-02-15 08:50:09 +01:00
![Patrick J Volkerding](/assets/img/avatar_default.png)
Mon Apr 25 13:37:00 UTC 2011 Slackware 13.37 x86_64 stable is released! Thanks to everyone who pitched in on this release: the Slackware team, the folks producing upstream code, and linuxquestions.org for providing a great forum for collaboration and testing. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. As always, thanks to the Slackware community for testing, suggestions, and feedback. :-) Have fun!
48 lines
1.6 KiB
Text
48 lines
1.6 KiB
Text
To: vim_dev@googlegroups.com
|
|
Subject: Patch 7.3.040
|
|
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.3.040
|
|
Problem: Comparing strings while ignoring case goes beyond end of the
|
|
string when there are illegal bytes. (Dominique Pelle)
|
|
Solution: Explicitly check for illegal bytes.
|
|
Files: src/mbyte.c
|
|
|
|
|
|
*** ../vim-7.3.039/src/mbyte.c 2010-10-23 14:02:48.000000000 +0200
|
|
--- src/mbyte.c 2010-10-27 13:34:16.000000000 +0200
|
|
***************
|
|
*** 3124,3129 ****
|
|
--- 3124,3132 ----
|
|
/* If one of the two characters is incomplete return -1. */
|
|
if (incomplete || i + utf_byte2len(s2[i]) > n)
|
|
return -1;
|
|
+ /* Don't case-fold illegal bytes or truncated characters. */
|
|
+ if (utf_ptr2len(s1 + i) < l || utf_ptr2len(s2 + i) < l)
|
|
+ return -1;
|
|
cdiff = utf_fold(utf_ptr2char(s1 + i))
|
|
- utf_fold(utf_ptr2char(s2 + i));
|
|
if (cdiff != 0)
|
|
*** ../vim-7.3.039/src/version.c 2010-10-27 12:58:19.000000000 +0200
|
|
--- src/version.c 2010-10-27 13:25:16.000000000 +0200
|
|
***************
|
|
*** 716,717 ****
|
|
--- 716,719 ----
|
|
{ /* Add new patch number below this line */
|
|
+ /**/
|
|
+ 40,
|
|
/**/
|
|
|
|
--
|
|
With sufficient thrust, pigs fly just fine.
|
|
-- RFC 1925
|
|
|
|
/// 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 ///
|