X-Git-Url: https://secure.softndesign.org/git/?a=blobdiff_plain;f=tabular.c;h=8100f048037643dfe531e770514dd2e699e8eaac;hb=e2a309f921968691af1566000dd694f191eca857;hp=60709aa9dd5d8409c8b0b41776f212f1a76a72c4;hpb=e952523a06b81e8915751bdcb01ca87aad06ce1c;p=calc.git diff --git a/tabular.c b/tabular.c index 60709aa..8100f04 100644 --- a/tabular.c +++ b/tabular.c @@ -33,7 +33,9 @@ tab_t *resize_tab (tab_t *tab, int nb) tmp = (double *) callocordie (nb, sizeof (double)); memcpy (tmp, tab->data, ((tab->size < nb) ? tab->size : nb) * sizeof (double)); } - free (tab->data); + if (tab->data){ + free (tab->data); + } tab->data = tmp; tab->size = nb; return tab; @@ -134,11 +136,13 @@ double pop_tab (tab_t *tab, int id) if ((!tab) || (((id < 1) || (id > tab->size)) && (id != -1))) { VERBOSE (WARNING, fprintf (stdout, "error out of bounds (%d/%d)\n", id, (tab) ? tab->size : 0)); } else { - ret = tab->data[id - 1]; /* special case for inserting an element at the end */ id = (id == -1) ? tab->size : id; + /* read data */ + ret = tab->data[id - 1]; + /* create larger tab */ double *tmp = (double *) callocordie (tab->size - 1, sizeof (double)); memcpy (tmp, tab->data, (id - 1) * sizeof (double)); @@ -157,8 +161,8 @@ double pop_tab (tab_t *tab, int id) void order_tab (tab_t *tab) { int i, j; - if ((!tab) || (tab->size < 3)) { - VERBOSE (WARNING, fprintf (stdout, "error not enough element in stack (%d)\n", tab->size)); + if ((!tab) || (tab->size < 2)) { + VERBOSE (WARNING, fprintf (stdout, "error not enough element in stack (%d)\n", (tab) ? tab->size : 0)); return; }