fix bug 17645, high-order bit on cookie character getting garbled, r=dp

This commit is contained in:
morse%netscape.com 1999-11-02 20:56:13 +00:00
parent b8cc67ab4e
commit 93f207e316

View File

@ -359,7 +359,8 @@ cookie_GetLine(nsInputFileStream strm, nsAutoString& aLine) {
return -1;
}
if (c != '\r') {
aLine += c;
aLine.Append(c);
// aLine += c;
}
}
return 0;