Alfred Klomp b308dd72d9 timing.c: avoid referencing garbage value
Found with Clang's `scan-build` tool.

When get_timer() is called with `reset` set to 1, the value of
t->start.tv_sec is used as a rvalue without being initialized first.
This is relatively harmless because the result of get_timer() is not
used by the callers when called in "reset mode". However, scan-build
prints a warning.

Silence the warning by only calculating the delta on non-reset runs,
returning zero otherwise.
2014-08-14 11:34:35 +02:00
..
2014-07-09 10:19:23 +02:00
2014-07-09 16:53:29 +02:00
2014-07-08 14:20:26 +02:00
2014-06-25 12:22:59 +02:00
2014-08-14 11:34:35 +02:00
2014-07-09 10:19:24 +02:00
2014-07-09 10:19:23 +02:00
2014-07-09 10:19:23 +02:00
2014-07-09 10:19:23 +02:00
2014-08-14 11:34:34 +02:00
2014-07-08 14:20:26 +02:00
2014-06-25 11:26:14 +02:00
2014-07-09 10:19:23 +02:00
2014-06-24 17:47:40 +02:00
2014-07-24 10:38:01 +02:00