CID 39914: Fallthrough in switch was altering value of $gflags when assigning to $line.

This commit is contained in:
Renaud 2015-03-16 13:47:03 +08:00
parent 5f9de6bb89
commit f97746a87b
1 changed files with 1 additions and 1 deletions

2
eval.c
View File

@ -1036,7 +1036,7 @@ static int svar(struct variable_description *var, char *value)
case EVLWIDTH:
break;
case EVLINE:
putctext(value);
return putctext( value) ;
case EVGFLAGS:
gflags = atoi(value);
break;