numparam/xpressn.c, evaluate(), drop local `numeric'

and return instantly when formula() reports an error
This commit is contained in:
rlar 2016-04-29 21:26:06 +02:00
parent 7549b3409e
commit 6da961c3f1
1 changed files with 10 additions and 15 deletions

View File

@ -1105,14 +1105,9 @@ static bool
evaluate(dico_t *dico, SPICE_DSTRINGPTR qstr_p, char *t, unsigned char mode)
{
/* transform t to result q. mode 0: expression, mode 1: simple variable */
double u = 0.0;
entry_t *entry;
bool numeric;
bool err;
spice_dstring_reinit(qstr_p);
numeric = 0;
err = 0;
if (mode == 1) {
/* string? */
@ -1125,8 +1120,8 @@ evaluate(dico_t *dico, SPICE_DSTRINGPTR qstr_p, char *t, unsigned char mode)
/* data type: Real or String */
if (entry->tp == NUPA_REAL) {
u = entry->vl;
numeric = 1;
double_to_string(qstr_p, entry->vl);
return 0;
} else if (entry->tp == NUPA_STRING) {
/* suppose source text "..." at */
int j = entry->ivl + 1;
@ -1135,20 +1130,20 @@ evaluate(dico_t *dico, SPICE_DSTRINGPTR qstr_p, char *t, unsigned char mode)
char c = entry->sbbase[j++];
if ((c == '\"') || (c < ' '))
break;
return 0;
cadd(qstr_p, c);
}
}
} else {
u = formula(dico, t, t + strlen(t), &err);
numeric = 1;
}
if (numeric)
bool err = 0;
double u = formula(dico, t, t + strlen(t), &err);
if (err)
return err;
double_to_string(qstr_p, u);
return err;
return 0;
}
return 0;
}