Sorry, refactoring!

This commit is contained in:
Ianos Gnatiuc
2006-04-26 17:06:23 +00:00
parent 6cac338f3e
commit f2ece5007e
27 changed files with 500 additions and 492 deletions

View File

@@ -642,13 +642,13 @@ UUDecodeLine (char *s, char *d, int method)
cc |= (c >> 2);
if(i-- > 0)
d[count++] = cc;
d[count++] = (char)(cc & 0xFF);
c <<= 6;
c |= table[ACAST(*s++)];
if(i-- > 0)
d[count++] = c;
d[count++] = (char)(c & 0xFF);
j -= 4;
}