Skip to content

Commit 888f1c0

Browse files
committed
updated for version 7.3.388
Problem: Crash on exit when EXITFREE is defined and using tiny features. Solution: Check for NULL window pointer. (Dominique Pelle)
1 parent a99ae26 commit 888f1c0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/buffer.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,8 @@ close_buffer(win, buf, action)
419419
if (
420420
#ifdef FEAT_WINDOWS
421421
win_valid(win) &&
422+
#else
423+
win != NULL &&
422424
#endif
423425
win->w_buffer == buf)
424426
win->w_buffer = NULL; /* make sure we don't use the buffer now */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,8 @@ static char *(features[]) =
714714

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
388,
717719
/**/
718720
387,
719721
/**/

0 commit comments

Comments
 (0)