From 7561c6926675cffbcdba5d253b572f885f2d7d2a Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Mon, 31 Aug 2020 00:25:28 -0400 Subject: [PATCH] Increase cipher length --- src/discord.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/discord.c b/src/discord.c index d28a6771a..4ee5d0a32 100644 --- a/src/discord.c +++ b/src/discord.c @@ -65,7 +65,7 @@ static char self_ip[IP_SIZE]; --------------------------------------------------*/ static char *DRPC_XORIPString(const char *input) { - const UINT8 xor[IP_SIZE] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}; + const UINT8 xor[IP_SIZE] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21}; char *output = malloc(sizeof(char) * (IP_SIZE+1)); UINT8 i;