fixed bug with previously removed var definition

This commit is contained in:
TLINDEN
2014-02-10 11:39:12 +01:00
parent efdf2987ae
commit f96cae9aa1

View File

@@ -75,7 +75,7 @@ unsigned char *pcp_z85_decode(char *z85block, size_t *dstlen) {
} }
char *pcp_z85_encode(unsigned char *raw, size_t srclen, size_t *dstlen) { char *pcp_z85_encode(unsigned char *raw, size_t srclen, size_t *dstlen) {
int pos; int pos = 0;
size_t outlen, blocklen, zlen; size_t outlen, blocklen, zlen;
/* make z85 happy (size % 4) */ /* make z85 happy (size % 4) */