aboutsummaryrefslogtreecommitdiffstats
path: root/variable.c
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-02-27 23:49:27 -0500
committerClyne Sullivan <tullivan99@gmail.com>2018-02-27 23:49:27 -0500
commit7b08dbbbe9a3dbe326a751497d27b9e187142eb8 (patch)
tree3aa146c3deb65f1e0a6bc8bf36664acad4357188 /variable.c
parent609ff568843dae9d003153509aaa0080aea7a303 (diff)
stable for calculator
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/variable.c b/variable.c
index bcf96cb..8b7dc12 100644
--- a/variable.c
+++ b/variable.c
@@ -37,7 +37,6 @@ variable *vmake(uint8_t fromc, uint8_t valtype, void *value)
v->svalue = 0;
switch (valtype) {
case STRING:
- v->value = 0;
v->svalue = fixstring(value);
free(value);
break;
@@ -50,7 +49,6 @@ variable *vmake(uint8_t fromc, uint8_t valtype, void *value)
v->svalue = str_func;
break;
case EXPR:
- v->value = 0;
v->svalue = value;
break;
}
@@ -71,15 +69,15 @@ variable *vmakef(float value)
void fsetstr(variable *f)
{
if (f->svalue == 0 || f->svalue == str_undef)
- f->svalue = (char *)malloc(16);
- snprintf(f->svalue, 16, "%f", FLOAT(f));
+ f->svalue = (char *)malloc(32);
+ snprintf(f->svalue, 32, "%f", FLOAT(f));
}
void isetstr(variable *i)
{
if (i->svalue == 0 || i->svalue == str_undef)
- i->svalue = (char *)malloc(12);
- snprintf(i->svalue, 12, "%d", (int)INT(i));
+ i->svalue = (char *)malloc(32);
+ snprintf(i->svalue, 32, "%d", (int)INT(i));
}
variable *itostring(variable *v)