Fixed two unintialzied warnings -- purely cosmetic
This commit is contained in:
parent
e820f0a5a4
commit
8bef509a21
@ -34,7 +34,8 @@ void AuthCrypt::DecryptRecv(uint8 *data, size_t len, bool temp)
|
|||||||
{
|
{
|
||||||
if (!_initialized) return;
|
if (!_initialized) return;
|
||||||
//if (len < CRYPTED_RECV_LEN) return;
|
//if (len < CRYPTED_RECV_LEN) return;
|
||||||
uint8 ti, tj;
|
uint8 ti = 0;
|
||||||
|
uint8 tj = 0;
|
||||||
if (temp)
|
if (temp)
|
||||||
{
|
{
|
||||||
ti = _recv_i;
|
ti = _recv_i;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user