summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-17 20:26:59 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-17 20:26:59 +0200
commit832f80e3101a916976c4b601bc87885a7f2e9d44 (patch)
tree8cd07a93a0683cb16b8e01bdc4144d3ec95fc29c /src
parentc24b6977a1ec76bf48bd38b8055761a80ff1d83c (diff)
downloadvim-832f80e3101a916976c4b601bc87885a7f2e9d44.zip
updated for version 7.3.003
Problem: Crash with specific BufWritePost autocmd. (Peter Odding) Solution: Don't free the quickfix title twice. (Lech Lorens)
Diffstat (limited to 'src')
-rw-r--r--src/quickfix.c1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index c67397a5a..7ff431834 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -2125,6 +2125,7 @@ qf_free(qi, idx)
--qi->qf_lists[idx].qf_count;
}
vim_free(qi->qf_lists[idx].qf_title);
+ qi->qf_lists[idx].qf_title = NULL;
}
/*
diff --git a/src/version.c b/src/version.c
index 34d5b49ae..f41de43b6 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3,
+/**/
2,
/**/
1,