зеркало из https://github.com/mozilla/pjs.git
Bug 269254: fix bug in utf16ToUcs4()'s returned length, patch by Ryan Jones <sciguyryan+bugzilla@gmail.com>, r+sr=biesi
This commit is contained in:
Родитель
5a5eaf76e4
Коммит
6a28c23b23
|
@ -308,7 +308,7 @@ static void utf16ToUcs4(const nsAString& in, PRUint32 *out, PRUint32 outBufLen,
|
|||
if (i >= outBufLen) {
|
||||
NS_ERROR("input too big, the result truncated");
|
||||
out[outBufLen-1] = (PRUint32)'\0';
|
||||
*outLen = i;
|
||||
*outLen = outBufLen;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче