# HG changeset patch # User Bram Moolenaar # Date 1579031104 -3600 # Node ID 8db080710015c2a82b6cc0d8a5f03d541d03bca5 # Parent 9b7f90e567535050a62c8cc9e3e15540b7494d61 patch 8.2.0118: crash when cycling to buffers involving popup window Commit: https://github.com/vim/vim/commit/ca7c078b799bfc96b54e9e41f5be3e0bfefadce5 Author: Bram Moolenaar Date: Tue Jan 14 20:42:48 2020 +0100 patch 8.2.0118: crash when cycling to buffers involving popup window Problem: Crash when cycling to buffers involving popup window . Solution: Do not decrement buffer reference count. diff --git a/src/popupwin.c b/src/popupwin.c --- a/src/popupwin.c +++ b/src/popupwin.c @@ -937,10 +937,7 @@ apply_options(win_T *wp, dict_T *dict) nr = dict_get_number(dict, (char_u *)"hidden"); if (nr > 0) - { wp->w_popup_flags |= POPF_HIDDEN; - --wp->w_buffer->b_nwindows; - } popup_mask_refresh = TRUE; popup_highlight_curline(wp); @@ -1153,7 +1150,6 @@ popup_adjust_position(win_T *wp) if ((wp->w_popup_flags & POPF_HIDDEN) == 0) { wp->w_popup_flags |= POPF_HIDDEN; - --wp->w_buffer->b_nwindows; if (win_valid(wp->w_popup_prop_win)) redraw_win_later(wp->w_popup_prop_win, SOME_VALID); } @@ -2351,7 +2347,7 @@ popup_hide(win_T *wp) if ((wp->w_popup_flags & POPF_HIDDEN) == 0) { wp->w_popup_flags |= POPF_HIDDEN; - --wp->w_buffer->b_nwindows; + // Do not decrement b_nwindows, we still reference the buffer. redraw_all_later(NOT_VALID); popup_mask_refresh = TRUE; } @@ -2376,7 +2372,6 @@ popup_show(win_T *wp) if ((wp->w_popup_flags & POPF_HIDDEN) != 0) { wp->w_popup_flags &= ~POPF_HIDDEN; - ++wp->w_buffer->b_nwindows; redraw_all_later(NOT_VALID); popup_mask_refresh = TRUE; } @@ -3154,7 +3149,6 @@ check_popup_unhidden(win_T *wp) &prop, &lnum) == OK) { wp->w_popup_flags &= ~POPF_HIDDEN; - ++wp->w_buffer->b_nwindows; wp->w_popup_prop_topline = 0; // force repositioning return TRUE; } diff --git a/src/testdir/dumps/Test_popupwin_infopopup_7.dump b/src/testdir/dumps/Test_popupwin_infopopup_7.dump new file mode 100644 --- /dev/null +++ b/src/testdir/dumps/Test_popupwin_infopopup_7.dump @@ -0,0 +1,14 @@ +|a+0&#ffffff0|w|o|r|d| @69 +|t|e|s|t| |t|e|x|t| |a|w|o|r|d> @17|╔+0&#ffff4012|═@15|X| +0&#ffffff0@23 +|~+0#4040ff13&| @7| +0#0000001#e0e0e08|w|r|d| @4|W| |e|x|t|r|a| |t|e|x|t| @1| +0#0000000#0000001|║+0&#ffff4012| |w|o|r|d|s| |a|r|e| |c|o@1|l| |║| +0#4040ff13#ffffff0@23 +|~| @7| +0#0000001#ffd7ff255|a|n|o|t|w|r|d| |W| |e|x|t|r|a| |t|e|x|t| @1| +0#0000000#0000001|╚+0&#ffff4012|═@15|⇲| +0#4040ff13#ffffff0@23 +|~| @7| +0#0000001#ffd7ff255|n|o|a|w|r|d| @1|W| |e|x|t|r|a| |t|e|x|t| @1| +0#0000000#a8a8a8255| +0#4040ff13#ffffff0@41 +|~| @73 +|~| @73 +|~| @73 +|~| @73 +|~| @73 +|~| @73 +|~| @73 +|~| @73 +|-+2#0000000&@1| |U|s|e|r| |d|e|f|i|n|e|d| |c|o|m|p|l|e|t|i|o|n| |(|^|U|^|N|^|P|)| |m+0#00e0003&|a|t|c|h| |1| |o|f| |4| +0#0000000&@26 diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim --- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -1045,7 +1045,7 @@ func Test_popup_hide() call assert_equal('hello', line) call assert_equal(0, popup_getpos(winid).visible) " buffer is still listed but hidden - call assert_match(winbufnr(winid) .. 'u h.*\[Popup\]', execute('ls u')) + call assert_match(winbufnr(winid) .. 'u a.*\[Popup\]', execute('ls u')) eval winid->popup_show() redraw @@ -2936,6 +2936,16 @@ func Test_popupmenu_info_border() call term_sendkeys(buf, "cc\\") call VerifyScreenDump(buf, 'Test_popupwin_infopopup_6', {}) + " Hide the info popup, cycle trough buffers, make sure it didn't get + " deleted. + call term_sendkeys(buf, "\") + call term_sendkeys(buf, ":set hidden\") + call term_sendkeys(buf, ":bn\") + call term_sendkeys(buf, ":bn\") + call term_sendkeys(buf, "otest text test text\\") + call VerifyScreenDump(buf, 'Test_popupwin_infopopup_7', {}) + + call term_sendkeys(buf, "\") call StopVimInTerminal(buf) call delete('XtestInfoPopup') endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 118, +/**/ 117, /**/ 116,