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.
1 parent 06f1ed2 commit fadacf0Copy full SHA for fadacf0
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
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 648,
769
/**/
770
647,
771
0 commit comments