Skip to content

Commit

Permalink
updated for version 7.3.388
Browse files Browse the repository at this point in the history
Problem:    Crash on exit when EXITFREE is defined and using tiny features.
Solution:   Check for NULL window pointer. (Dominique Pelle)
  • Loading branch information
brammool committed Dec 30, 2011
1 parent a99ae26 commit 888f1c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,8 @@ close_buffer(win, buf, action)
if (
#ifdef FEAT_WINDOWS
win_valid(win) &&
#else
win != NULL &&
#endif
win->w_buffer == buf)
win->w_buffer = NULL; /* make sure we don't use the buffer now */
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
388,
/**/
387,
/**/
Expand Down

0 comments on commit 888f1c0

Please sign in to comment.