From 9e353fbae814e42c421434535a923e1dd25f0dd5 Mon Sep 17 00:00:00 2001 From: rlar Date: Wed, 23 Dec 2015 10:37:41 +0100 Subject: [PATCH] frontend/rawfile.c, raw_read(), emphasise `v_type' initialisation --- src/frontend/rawfile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/rawfile.c b/src/frontend/rawfile.c index baa08835d..8df116950 100644 --- a/src/frontend/rawfile.c +++ b/src/frontend/rawfile.c @@ -466,6 +466,7 @@ raw_read(char *name) { for (i = 0; i < nvars; i++) { v = alloc(struct dvec); ZERO(v, struct dvec); + v->v_type = SV_NOTYPE; v->v_next = curpl->pl_dvecs; curpl->pl_dvecs = v; if (!curpl->pl_scale)