fix uninitialized var

svn path=/trunk/boinc/; revision=9189
This commit is contained in:
David Anderson 2006-01-06 19:27:12 +00:00
parent 13e3b93cce
commit d04d62fb16
2 changed files with 8 additions and 1 deletions

View File

@ -120,3 +120,9 @@ Rom 6 Jan 2006
Rom 6 Jan 2006 (HEAD)
- Tag for 5.3.8 release, all platforms
boinc_core_release_5_3_8
David 6 Jan 2006
- fix unitialized var
client/
net_stats.C

View File

@ -64,7 +64,7 @@ void NET_INFO::update(double dt, double nb, bool active) {
}
double NET_INFO::throughput() {
double x, tp, new_tp;
double x, tp, new_tp=0;
if (starting_throughput > 0) {
if (delta_t > 0) {
x = exp(-delta_t*EXP_DECAY_RATE);
@ -75,6 +75,7 @@ double NET_INFO::throughput() {
}
} else if (delta_t > 0) {
new_tp = delta_nbytes/delta_t;
} else {
}
#if 0
msg_printf(NULL, MSG_ERROR, "start %f delta_t %f delta_nb %f new_tp %f",