From bdc8200a21032a8a79f45aa0e6cc308d34b14d48 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Sun, 17 Jan 2010 19:35:35 +0100 Subject: [PATCH] Another off-by-one found by valgrind. --- src/specials.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/specials.c b/src/specials.c index 27b8d83..3fa6e0b 100644 --- a/src/specials.c +++ b/src/specials.c @@ -324,7 +324,6 @@ static void graph_append(struct special_t *graph, double f, char showaslog) f = graph->graph_scale; } - graph->graph[0] = f; /* add new data */ /* shift all the data by 1 */ for (i = graph->graph_width - 1; i > 0; i--) { graph->graph[i] = graph->graph[i - 1]; @@ -333,9 +332,10 @@ static void graph_append(struct special_t *graph, double f, char showaslog) graph->graph_scale = graph->graph[i - 1]; } } - if (graph->scaled && graph->graph[graph->graph_width] > graph->graph_scale) { + graph->graph[0] = f; /* add new data */ + if (graph->scaled && graph->graph[0] > graph->graph_scale) { /* check if we need to update the scale */ - graph->graph_scale = graph->graph[graph->graph_width]; + graph->graph_scale = graph->graph[0]; } } -- 1.7.9.5