mirror of
https://github.com/neovim/neovim.git
synced 2026-08-29 10:31:48 +00:00
lint
This commit is contained in:
@@ -489,10 +489,11 @@ void free_all_mem(void)
|
||||
{
|
||||
buf_T *buf, *nextbuf;
|
||||
|
||||
/* When we cause a crash here it is caught and Vim tries to exit cleanly.
|
||||
* Don't try freeing everything again. */
|
||||
if (entered_free_all_mem)
|
||||
// When we cause a crash here it is caught and Vim tries to exit cleanly.
|
||||
// Don't try freeing everything again.
|
||||
if (entered_free_all_mem) {
|
||||
return;
|
||||
}
|
||||
entered_free_all_mem = true;
|
||||
|
||||
// Don't want to trigger autocommands from here on.
|
||||
|
||||
Reference in New Issue
Block a user