1ff636
From 93ac68f5225bc0cf63ead3a3212539586d1fffb7 Mon Sep 17 00:00:00 2001
1ff636
From: Aaro Koskinen <aaro.koskinen@nokia.com>
1ff636
Date: Tue, 24 Feb 2015 18:32:31 +0200
1ff636
Subject: [PATCH] bootchart: svg: fix checking of list end
1ff636
1ff636
If we have less samples than expected, systemd-bootchart will crash.
1ff636
1ff636
(cherry picked from commit c1682f17a0c966988e865c649e565dae41abf32d)
1ff636
---
1ff636
 src/bootchart/svg.c | 2 +-
1ff636
 1 file changed, 1 insertion(+), 1 deletion(-)
1ff636
1ff636
diff --git a/src/bootchart/svg.c b/src/bootchart/svg.c
c62b8e
index e111fa9cce..144177cd47 100644
1ff636
--- a/src/bootchart/svg.c
1ff636
+++ b/src/bootchart/svg.c
1ff636
@@ -1170,7 +1170,7 @@ static void svg_ps_bars(void) {
1ff636
 
1ff636
                 ps->sample = ps->sample->next;
1ff636
                 sample_hz = ps->sample;
1ff636
-                for (ii=0;((ii<(int)arg_hz/2)&&(ps->sample->next));ii++)
1ff636
+                for (ii=0;((ii<(int)arg_hz/2)&&(sample_hz->next));ii++)
1ff636
                         sample_hz = sample_hz->next;
1ff636
 
1ff636
                 /* subtract bootchart cpu utilization from total */