# HG changeset patch # User Bram Moolenaar # Date 1282069619 -7200 # Node ID 2a8bf2ba504f422d53dac30da8b58d76e54b4428 # Parent fde086181841aa124af8a38b5c0bba132de3ea94 updated for version 7.3.003 Problem: Crash with specific BufWritePost autocmd. (Peter Odding) Solution: Don't free the quickfix title twice. (Lech Lorens) diff --git a/src/quickfix.c b/src/quickfix.c --- 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 --- 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,