Make a for loop in uuencode less dumb
This commit is contained in:
parent
59e8ec522e
commit
3ef8fa9ec0
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,8 @@ namespace agi {
|
||||||
for (size_t pos = 0; pos + 1 < len; ) {
|
for (size_t pos = 0; pos + 1 < len; ) {
|
||||||
size_t bytes = 0;
|
size_t bytes = 0;
|
||||||
unsigned char src[4] = { '\0', '\0', '\0', '\0' };
|
unsigned char src[4] = { '\0', '\0', '\0', '\0' };
|
||||||
for (size_t i = 0; i < 4 && pos < len; ) {
|
for (size_t i = 0; i < 4 && pos < len; ++pos) {
|
||||||
char c = str[pos++];
|
char c = str[pos];
|
||||||
if (c && c != '\n' && c != '\r') {
|
if (c && c != '\n' && c != '\r') {
|
||||||
src[i++] = c - 33;
|
src[i++] = c - 33;
|
||||||
++bytes;
|
++bytes;
|
||||||
|
|
Loading…
Reference in a new issue