1
0
forked from aniani/vim

patch 8.0.0266: compiler warning for using uninitialized variable

Problem:    Compiler warning for using uninitialized variable.
Solution:   Set tab_number also when there is an error.
This commit is contained in:
Bram Moolenaar 2017-01-29 21:42:20 +01:00
parent a58883b4ea
commit c625155ea4
2 changed files with 5 additions and 0 deletions

View File

@ -7533,7 +7533,10 @@ get_tabpage_arg(exarg_T *eap)
else if (eap->addr_count > 0)
{
if (unaccept_arg0 && eap->line2 == 0)
{
eap->errmsg = e_invrange;
tab_number = 0;
}
else
{
tab_number = eap->line2;

View File

@ -764,6 +764,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
266,
/**/
265,
/**/