summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/version.c2
-rw-r--r--src/window.c8
2 files changed, 8 insertions, 2 deletions
diff --git a/src/version.c b/src/version.c
index 6c113c7b0..a71784fd2 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 317,
+/**/
316,
/**/
315,
diff --git a/src/window.c b/src/window.c
index 856e7c459..fe6f335cc 100644
--- a/src/window.c
+++ b/src/window.c
@@ -4721,8 +4721,12 @@ win_alloc_lines(wp)
win_free_lsize(wp)
win_T *wp;
{
- vim_free(wp->w_lines);
- wp->w_lines = NULL;
+ /* TODO: why would wp be NULL here? */
+ if (wp != NULL)
+ {
+ vim_free(wp->w_lines);
+ wp->w_lines = NULL;
+ }
}
/*