Fixes a problem when the data ends in a header. 85529, r=valeski, sr=rpotts

This commit is contained in:
dougt%netscape.com 2001-07-05 21:30:47 +00:00
Родитель e9913383cf
Коммит b6d76a8c7e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -820,7 +820,7 @@ nsMultiMixedConv::ParseHeaders(nsIChannel *aChannel, char *&aPtr,
if (newLine == cursor) {
// move the newLine beyond the double linefeed marker
if ( (newLine - cursor) < ((PRInt32)cursorLen - lineFeedIncrement) ) {
if ( (newLine - cursor) <= ((PRInt32)cursorLen - lineFeedIncrement) ) {
newLine += lineFeedIncrement;
}
cursorLen -= (newLine - cursor);