Merge branch 'tor-github/pr/611'

This commit is contained in:
George Kadianakis
2019-02-26 12:33:23 +02:00
12 changed files with 41 additions and 31 deletions
+2 -2
View File
@@ -84,7 +84,7 @@ base32_encode(char *dest, size_t destlen, const char *src, size_t srclen)
}
/** Implements base32 decoding as in RFC 4648.
* Returns 0 if successful, -1 otherwise.
* Return the number of bytes decoded if successful; -1 otherwise.
*/
int
base32_decode(char *dest, size_t destlen, const char *src, size_t srclen)
@@ -147,7 +147,7 @@ base32_decode(char *dest, size_t destlen, const char *src, size_t srclen)
memset(tmp, 0, srclen); /* on the heap, this should be safe */
tor_free(tmp);
tmp = NULL;
return 0;
return i;
}
#define BASE64_OPENSSL_LINELEN 64