diff options
| author | Rye <rye@lindenlab.com> | 2025-02-03 11:37:08 -0500 |
|---|---|---|
| committer | Rye <rye@lindenlab.com> | 2025-02-11 05:04:09 -0500 |
| commit | 36d4dc4e2be8ac6c6d042b0a1e5c130b6544ef7f (patch) | |
| tree | a3a6676a36cfd6eeb426db112fe8e215f77eafa0 /indra/llmessage/llxfermanager.cpp | |
| parent | a455d3ee7d5ddefcdf008fa86ecc7c80aba758aa (diff) | |
Fix uninitialized variable warnings being emitted by current clang
Diffstat (limited to 'indra/llmessage/llxfermanager.cpp')
| -rw-r--r-- | indra/llmessage/llxfermanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llxfermanager.cpp b/indra/llmessage/llxfermanager.cpp index f6ed43a4e4..a2d09f4f36 100644 --- a/indra/llmessage/llxfermanager.cpp +++ b/indra/llmessage/llxfermanager.cpp @@ -1051,7 +1051,7 @@ void LLXferManager::retransmitUnackedPackets() // Re-build mOutgoingHosts data updateHostStatus(); - F32 et; + F32 et = 0.f; iter = mSendList.begin(); while (iter != mSendList.end()) { |
