We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a994101 + fadacf0 commit 974cffaCopy full SHA for 974cffa
src/buffer.c
@@ -372,7 +372,7 @@ open_buffer(
372
set_bufref(bufref_T *bufref, buf_T *buf)
373
{
374
bufref->br_buf = buf;
375
- bufref->br_fnum = buf->b_fnum;
+ bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
376
bufref->br_buf_free_count = buf_free_count;
377
}
378
src/version.c
@@ -779,6 +779,8 @@ static char *(features[]) =
779
780
static int included_patches[] =
781
{ /* Add new patch number below this line */
782
+/**/
783
+ 648,
784
/**/
785
647,
786
0 commit comments