|
Karsten Hopp |
ffb44a |
To: vim-dev@vim.org
|
|
Karsten Hopp |
ffb44a |
Subject: Patch 7.3.003
|
|
Karsten Hopp |
ffb44a |
Fcc: outbox
|
|
Karsten Hopp |
ffb44a |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ffb44a |
Mime-Version: 1.0
|
|
Karsten Hopp |
ffb44a |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
ffb44a |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ffb44a |
------------
|
|
Karsten Hopp |
ffb44a |
|
|
Karsten Hopp |
ffb44a |
Patch 7.1.003
|
|
Karsten Hopp |
ffb44a |
Problem: Crash with specific BufWritePost autocmd. (Peter Odding)
|
|
Karsten Hopp |
ffb44a |
Solution: Don't free the quickfix title twice. (Lech Lorens)
|
|
Karsten Hopp |
ffb44a |
Files: src/quickfix.c
|
|
Karsten Hopp |
ffb44a |
|
|
Karsten Hopp |
ffb44a |
|
|
Karsten Hopp |
ffb44a |
*** ../vim-7.3.002/src/quickfix.c 2010-08-15 21:57:26.000000000 +0200
|
|
Karsten Hopp |
ffb44a |
--- src/quickfix.c 2010-08-16 21:15:44.000000000 +0200
|
|
Karsten Hopp |
ffb44a |
***************
|
|
Karsten Hopp |
ffb44a |
*** 2125,2130 ****
|
|
Karsten Hopp |
ffb44a |
--- 2125,2131 ----
|
|
Karsten Hopp |
ffb44a |
--qi->qf_lists[idx].qf_count;
|
|
Karsten Hopp |
ffb44a |
}
|
|
Karsten Hopp |
ffb44a |
vim_free(qi->qf_lists[idx].qf_title);
|
|
Karsten Hopp |
ffb44a |
+ qi->qf_lists[idx].qf_title = NULL;
|
|
Karsten Hopp |
ffb44a |
}
|
|
Karsten Hopp |
ffb44a |
|
|
Karsten Hopp |
ffb44a |
/*
|
|
Karsten Hopp |
ffb44a |
*** ../vim-7.3.002/src/version.c 2010-08-16 22:33:55.000000000 +0200
|
|
Karsten Hopp |
ffb44a |
--- src/version.c 2010-08-17 20:23:05.000000000 +0200
|
|
Karsten Hopp |
ffb44a |
***************
|
|
Karsten Hopp |
ffb44a |
*** 716,717 ****
|
|
Karsten Hopp |
ffb44a |
--- 716,719 ----
|
|
Karsten Hopp |
ffb44a |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ffb44a |
+ /**/
|
|
Karsten Hopp |
ffb44a |
+ 3,
|
|
Karsten Hopp |
ffb44a |
/**/
|
|
Karsten Hopp |
ffb44a |
|
|
Karsten Hopp |
ffb44a |
--
|
|
Karsten Hopp |
ffb44a |
From "know your smileys":
|
|
Karsten Hopp |
ffb44a |
:-X My lips are sealed
|
|
Karsten Hopp |
ffb44a |
|
|
Karsten Hopp |
ffb44a |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ffb44a |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ffb44a |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
ffb44a |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|