зеркало из https://github.com/mozilla/gecko-dev.git
Fixes a problem when the data ends in a header. 85529, r=valeski, sr=rpotts
This commit is contained in:
Родитель
e9913383cf
Коммит
b6d76a8c7e
|
@ -820,7 +820,7 @@ nsMultiMixedConv::ParseHeaders(nsIChannel *aChannel, char *&aPtr,
|
||||||
|
|
||||||
if (newLine == cursor) {
|
if (newLine == cursor) {
|
||||||
// move the newLine beyond the double linefeed marker
|
// move the newLine beyond the double linefeed marker
|
||||||
if ( (newLine - cursor) < ((PRInt32)cursorLen - lineFeedIncrement) ) {
|
if ( (newLine - cursor) <= ((PRInt32)cursorLen - lineFeedIncrement) ) {
|
||||||
newLine += lineFeedIncrement;
|
newLine += lineFeedIncrement;
|
||||||
}
|
}
|
||||||
cursorLen -= (newLine - cursor);
|
cursorLen -= (newLine - cursor);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче