diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/nvim/quickfix.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 171b7a825b..3bc6d46dd9 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -1886,6 +1886,8 @@ static void qf_free(qf_info_T *qi, int idx)      --qi->qf_lists[idx].qf_count;    }    xfree(qi->qf_lists[idx].qf_title); +  qi->qf_lists[idx].qf_start = NULL; +  qi->qf_lists[idx].qf_ptr = NULL;    qi->qf_lists[idx].qf_title = NULL;    qi->qf_lists[idx].qf_index = 0;  }  | 
