зеркало из https://github.com/mozilla/pjs.git
Bug 283510 OOM crasher [@ mozMySpell::Check]
patch by dewildt@gmail.com r=timeless sr=mscott
This commit is contained in:
Родитель
75e5b1a17d
Коммит
b2d766b126
|
@ -299,6 +299,8 @@ NS_IMETHODIMP mozMySpell::Check(const PRUnichar *aWord, PRBool *aResult)
|
|||
}
|
||||
|
||||
char *charsetWord = (char *) nsMemory::Alloc(sizeof(char) * (outLength+1));
|
||||
NS_ENSURE_TRUE(charsetWord, NS_ERROR_OUT_OF_MEMORY);
|
||||
|
||||
rv = mEncoder->Convert(aWord, &inLength, charsetWord, &outLength);
|
||||
charsetWord[outLength] = '\0';
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче