diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index b1e6aa7810..a8a2efbc8a 100644 --- a/src/main.c +++ b/src/main.c @@ -834,7 +834,7 @@ void getout(int exitval) apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf); } - if (*p_viminfo != NUL) + if (p_viminfo && *p_viminfo != NUL) /* Write out the registers, history, marks etc, to the viminfo file */ write_viminfo(NULL, FALSE); |