mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 23:18:33 +00:00
vim-patch:8.0.1193: crash when wiping buffer after getbufinfo()
Problem: Crash when wiping out a buffer after using getbufinfo(). (Yegappan Lakshmanan) Solution: Remove b:changedtick from the buffer variables. (Note: The test changes in vim-patch:8.0.1193 were already included.)
This commit is contained in:
@@ -508,9 +508,9 @@ struct file_buffer {
|
||||
int b_changed; // 'modified': Set to true if something in the
|
||||
// file has been changed and not written out.
|
||||
|
||||
/// Change identifier incremented for each change, including undo
|
||||
/// Change-identifier incremented for each change, including undo.
|
||||
///
|
||||
/// This is a dictionary item used to store in b:changedtick.
|
||||
/// This is a dictionary item used to store b:changedtick.
|
||||
ChangedtickDictItem changedtick_di;
|
||||
|
||||
varnumber_T b_last_changedtick; // b:changedtick when TextChanged or
|
||||
|
Reference in New Issue
Block a user