(Not part of Communicator build.)

Tweak last fix not to depend on size of char.
This commit is contained in:
norris 1998-06-12 22:20:06 +00:00
Родитель adcde586f1
Коммит bdd7836760
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -316,7 +316,7 @@ GetChar(JSTokenStream *ts)
}
}
for (j = 0; i < len; i++, j++)
ubuf[i] = (jschar) (cbuf[j] & 0xff);
ubuf[i] = (jschar) (unsigned char) cbuf[j];
ts->userbuf.limit = ubuf + len;
ts->userbuf.ptr = ubuf;
} else