AIX bustage fix after checkin of Bug 315288 enabled UTF-8 strings in JS. Changed C++ style comment to C style comment. No bug.

r=shaver@mozilla.org
This commit is contained in:
pkw%us.ibm.com 2005-11-10 21:03:28 +00:00
Родитель 5aad193e21
Коммит 1cf270e750
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2944,7 +2944,7 @@ js_DeflateStringToBuffer(JSContext *cx, const jschar* src, size_t srclen, char*
v = ((c - 0xD800) << 10) + (c2 - 0xDC00) + 0x10000;
}
if (v < 0x0080) {
// no encoding necessary - performance hack
/* no encoding necessary - performance hack */
if (!dstlen)
goto bufferTooSmall;
if (dst)