Make sure d cannot be used uninitialized.

This commit is contained in:
Joris Vink 2013-10-15 13:10:30 +02:00
parent ee99503323
commit 49df7a313b
1 changed files with 1 additions and 0 deletions

View File

@ -337,6 +337,7 @@ kore_base64_decode(char *in, u_int8_t **out, u_int32_t *olen)
i = 3;
b = 0;
d = 0;
len = strlen(in);
res = kore_buf_create(len);