From ab7d96c96f1a18e2c0e1e684586eac2f47a879dd Mon Sep 17 00:00:00 2001 From: Patrick Valsecchi Date: Thu, 3 Oct 2013 11:36:46 -0700 Subject: Fix unitialized variable use I ran subsurface with valgrind and it found a few errors. [Dirk Hohndel: split this out from a much bigger patch that is still under review] Signed-off-by: Patrick Valsecchi Signed-off-by: Dirk Hohndel --- profile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profile.c b/profile.c index 79d59f099..f71552eca 100644 --- a/profile.c +++ b/profile.c @@ -1372,6 +1372,7 @@ void compare_samples(struct plot_data *e1, struct plot_data *e2, char *buf, int return; } count = 0; + avg_speed = 0; max_speed = 0; min_speed = INT_MAX; @@ -1385,6 +1386,7 @@ void compare_samples(struct plot_data *e1, struct plot_data *e2, char *buf, int last_sec = start->sec; last_pressure = GET_PRESSURE(start); + data = start; while (data != stop) { data = start+count; if (sum) -- cgit v1.2.3-70-g09d2