diff options
Diffstat (limited to 'src/base64.c')
| -rw-r--r-- | src/base64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base64.c b/src/base64.c index ee02356..76990b9 100644 --- a/src/base64.c +++ b/src/base64.c | |||
| @@ -78,7 +78,7 @@ unsigned char *base64decode(const char *buf, size_t *size) | |||
| 78 | if (len <= 0) return NULL; | 78 | if (len <= 0) return NULL; |
| 79 | unsigned char *outbuf = (unsigned char*)malloc((len/4)*3+3); | 79 | unsigned char *outbuf = (unsigned char*)malloc((len/4)*3+3); |
| 80 | const char *ptr = buf; | 80 | const char *ptr = buf; |
| 81 | int p = 0; | 81 | size_t p = 0; |
| 82 | int wv, w1, w2, w3, w4; | 82 | int wv, w1, w2, w3, w4; |
| 83 | int tmpval[4]; | 83 | int tmpval[4]; |
| 84 | int tmpcnt = 0; | 84 | int tmpcnt = 0; |
