commit | b94767ff44edf5d461d7cb1c8eb5160f83886358 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Tue Feb 22 20:15:44 2011 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Tue Feb 22 20:15:44 2011 +0000 |
tree | b43b482e765b0383b3326779f6815e72b2bacccb | |
parent | 79da6b7075a3d51ae042e77a2afca827e7bce435 [diff] [blame] |
Issue #8914: fix various warnings from the Clang static analyzer v254.
diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c index ffd1ec2..2d3be5d 100644 --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c
@@ -53,8 +53,9 @@ _PyTime_timeval curtime; _PyTime_timeval endtime; + + _PyTime_gettimeofday(&endtime); if (microseconds > 0) { - _PyTime_gettimeofday(&endtime); endtime.tv_sec += microseconds / (1000 * 1000); endtime.tv_usec += microseconds % (1000 * 1000); }