X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fdata%2Fdictionary.c;h=b2fe10cfc4c091e2a726635cc20a03192c802120;hb=83141cdd4ab281da80d5dfeda05073f0cb354eab;hp=d2d93c3bd2f535d59dac071f0ce4fbe2f57d7772;hpb=985c40f2a83588b25f0e6fe7f7d82863c5d34d43;p=pspp diff --git a/src/data/dictionary.c b/src/data/dictionary.c index d2d93c3bd2..b2fe10cfc4 100644 --- a/src/data/dictionary.c +++ b/src/data/dictionary.c @@ -282,7 +282,6 @@ dict_create_var (struct dictionary *d, const char *name, int width) v->width = width; v->fv = d->next_value_idx; v->nv = width == 0 ? 1 : DIV_RND_UP (width, 8); - v->init = 1; v->reinit = dict_class_from_id (v->name) != DC_SCRATCH; v->index = d->var_cnt; mv_init (&v->miss, width); @@ -359,7 +358,6 @@ dict_clone_var (struct dictionary *d, const struct variable *ov, short_name[] is intentionally not copied, because there is no reason to give a new variable with potentially a new name the same short name. */ - nv->init = 1; nv->reinit = ov->reinit; mv_copy (&nv->miss, &ov->miss); nv->print = ov->print;