Fix issue with zmodem dialog not popping up.

BUG: 145177

svn path=/branches/KDE/3.5/kdebase/konsole/; revision=846506
This commit is contained in:
Kurt Hindenburg
2008-08-13 15:45:41 +00:00
parent 404bd9258d
commit b6b35fea0f

View File

@@ -333,8 +333,8 @@ void TEmulation::onRcvBlock(const char *s, int len)
}
// Otherwise, bulk decode until the next control code
for(l = i; l < len-1; ++l)
if ((unsigned char) s[l] < 32)
for(l = i; l < len; l++)
if ((unsigned char) s[l+1] < 32)
break;
r = decoder->toUnicode(&s[i],l-i+1);