Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/pidgin-opensteamworks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreionrobb <eionrobb@8ca6c67d-4297-256d-f884-781da6d5760b>2014-11-18 09:24:18 +0300
committereionrobb <eionrobb@8ca6c67d-4297-256d-f884-781da6d5760b>2014-11-18 09:24:18 +0300
commit9d41610af2b6de44f1163e8f8a46a4bb301ff333 (patch)
treef102a4762ac7774a84cb7ae905d2b1c8aacb6b87
parent4ca304e3e4a803773a5cbc9245531c0e4278fcaf (diff)
Remove compiler warning about unused variable
-rw-r--r--steam-mobile/steam_rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/steam-mobile/steam_rsa.c b/steam-mobile/steam_rsa.c
index 326edd7..4aa5e5d 100644
--- a/steam-mobile/steam_rsa.c
+++ b/steam-mobile/steam_rsa.c
@@ -53,7 +53,7 @@ pkcs1pad2(const char *data, int keysize)
guchar *buffer = g_new0(guchar, keysize);
int len = strlen(data) - 1;
- int abs_len = keysize;
+
while(len >=0 && keysize > 0)
buffer[--keysize] = (unsigned char)data[len--];
buffer[--keysize] = 0;