From 8bef509a213219914b54cbe6c743bfa26ec56d4f Mon Sep 17 00:00:00 2001 From: clearer Date: Thu, 21 May 2009 23:57:27 +0000 Subject: [PATCH] Fixed two unintialzied warnings -- purely cosmetic --- src/shared/Auth/AuthCrypt.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shared/Auth/AuthCrypt.cpp b/src/shared/Auth/AuthCrypt.cpp index 7106f57..04f8965 100644 --- a/src/shared/Auth/AuthCrypt.cpp +++ b/src/shared/Auth/AuthCrypt.cpp @@ -34,7 +34,8 @@ void AuthCrypt::DecryptRecv(uint8 *data, size_t len, bool temp) { if (!_initialized) return; //if (len < CRYPTED_RECV_LEN) return; - uint8 ti, tj; + uint8 ti = 0; + uint8 tj = 0; if (temp) { ti = _recv_i;