From 78bb94eb424dd3db3d0d97e175942758a643522b Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Sat, 23 Feb 2013 19:36:18 +0100 Subject: [PATCH] Bug fix: remove remainder of test code --- indra/llmessage/aihttptimeout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llmessage/aihttptimeout.cpp b/indra/llmessage/aihttptimeout.cpp index 499921a2e..b10482890 100644 --- a/indra/llmessage/aihttptimeout.cpp +++ b/indra/llmessage/aihttptimeout.cpp @@ -327,7 +327,7 @@ bool HTTPTimeout::lowspeed(size_t bytes) llassert_always(bucket < low_speed_time); total_bytes -= mBuckets[bucket]; // Empty this bucket. } - while(total_bytes >= 1); // Use 1 here instead of mintotalbytes, to test that total_bytes indeed always reaches zero. + while(total_bytes >= mintotalbytes); } // If this function isn't called again within max_stall_time seconds, we stalled. mStalled = sClockCount + max_stall_time / sClockWidth;