Catch CDEF:tot= and raise and error to fix #199. Thanks to Jeron Massar for reporting...
[rrdtool.git] / src / rrd_graph_helper.c
index b5be2ef..456ab95 100644 (file)
@@ -862,6 +862,10 @@ int rrd_parse_make_vname(
         rrd_set_error("Cannot parse vname from '%s'", line);
         return 1;
     }
+    if (line[*eaten+i] == '\0') {
+        rrd_set_error("String ends after the = sign on '%s'", line);
+        return 1;
+    }
     dprintf("- found candidate '%s'\n", tmpstr);
 
     if ((gdp->vidx = find_var(im, tmpstr)) >= 0) {