зеркало из https://github.com/mozilla/gecko-dev.git
Bug 570986 - nsGlobalWindow::Dump should check all bytes, not chars, when replacing \r with \n. r=bzbarsky
This commit is contained in:
Родитель
593ba5e110
Коммит
14d1d1b054
|
@ -4103,7 +4103,7 @@ nsGlobalWindow::Dump(const nsAString& aStr)
|
|||
|
||||
#if defined(XP_MAC) || defined(XP_MACOSX)
|
||||
// have to convert \r to \n so that printing to the console works
|
||||
char *c = cstr, *cEnd = cstr + aStr.Length();
|
||||
char *c = cstr, *cEnd = cstr + strlen(cstr);
|
||||
while (c < cEnd) {
|
||||
if (*c == '\r')
|
||||
*c = '\n';
|
||||
|
|
Загрузка…
Ссылка в новой задаче