Bug 570986 - nsGlobalWindow::Dump should check all bytes, not chars, when replacing \r with \n. r=bzbarsky

This commit is contained in:
Drew Willcoxon 2010-06-09 14:08:17 -07:00
Родитель 593ba5e110
Коммит 14d1d1b054
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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';