Remove unused variable
This commit is contained in:
parent
2d952d8e94
commit
299f5350a4
1 changed files with 1 additions and 1 deletions
|
@ -2625,7 +2625,7 @@ unsigned char *DecodeDataBase64(const char *text, int *outputSize)
|
||||||
if (decodedData == NULL) return NULL;
|
if (decodedData == NULL) return NULL;
|
||||||
|
|
||||||
int outputCount = 0;
|
int outputCount = 0;
|
||||||
for (int i = 0, j = 0; i < dataSize;)
|
for (int i = 0; i < dataSize;)
|
||||||
{
|
{
|
||||||
// Every 4 sixtets must generate 3 octets
|
// Every 4 sixtets must generate 3 octets
|
||||||
unsigned int sixtetA = base64DecodeTable[(unsigned char)text[i]];
|
unsigned int sixtetA = base64DecodeTable[(unsigned char)text[i]];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue