forked from aniani/vim
patch 8.1.0488: using freed memory in quickfix code
Problem: Using freed memory in quickfix code. (Dominique Pelle)
Solution: Add the quickfix_busy() flag to postpone deleting quickfix lists
until it is safe. (Yegappan Lakshmanan, closes #3538)
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
/* quickfix.c */
|
||||
int qf_init(win_T *wp, char_u *efile, char_u *errorformat, int newlist, char_u *qf_title, char_u *enc);
|
||||
void qf_free_all(win_T *wp);
|
||||
void check_quickfix_busy(void);
|
||||
void copy_loclist_stack(win_T *from, win_T *to);
|
||||
void qf_jump(qf_info_T *qi, int dir, int errornr, int forceit);
|
||||
void qf_list(exarg_T *eap);
|
||||
|
||||
Reference in New Issue
Block a user