From 6b0fe7eb41ad7c59c976d9715dc9f8e95938a410 Mon Sep 17 00:00:00 2001 From: xor2003 Date: Fri, 24 Oct 2014 15:57:10 +0400 Subject: Fix uninitialized --- toxcore/group.c | 2 +- toxcore/net_crypto.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/toxcore/group.c b/toxcore/group.c index 3a3a0561..ffa36326 100644 --- a/toxcore/group.c +++ b/toxcore/group.c @@ -190,7 +190,7 @@ static int get_peer_index(Group_c *g, uint16_t peer_number) static uint16_t calculate_comp_value(const uint8_t *pk1, const uint8_t *pk2) { - uint8_t cmp1, cmp2; + uint8_t cmp1, cmp2=0; for (cmp1 = crypto_box_PUBLICKEYBYTES; cmp1 != 0; --cmp1) { uint8_t index = crypto_box_PUBLICKEYBYTES - cmp1; diff --git a/toxcore/net_crypto.c b/toxcore/net_crypto.c index 63012ce6..cfc7d366 100644 --- a/toxcore/net_crypto.c +++ b/toxcore/net_crypto.c @@ -1817,6 +1817,7 @@ static int tcp_oob_callback(void *object, const uint8_t *public_key, const uint8 if (crypt_connection_id == -1) { IP_Port source; + source.port = 0; source.ip.family = TCP_FAMILY; source.ip.ip6.uint32[0] = location; -- cgit v1.2.3