зеркало из https://github.com/mozilla/gecko-dev.git
Bug 334716: Ineffective allocation check in nsParserService::CreateEntry (nsParserService.cpp), patch by patch by Ryan Flint <rflint@dslr.net>, r=mrbkap, sr=jst
This commit is contained in:
Родитель
14a5119326
Коммит
fb232af27d
|
@ -258,7 +258,7 @@ nsParserService::CreateEntry(const nsAString& aTopic, nsObserverEntry** aEntry)
|
|||
{
|
||||
*aEntry = new nsObserverEntry(aTopic);
|
||||
|
||||
if (!aEntry) {
|
||||
if (!*aEntry) {
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче