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:
gavin%gavinsharp.com 2006-04-28 17:25:47 +00:00
Родитель 14a5119326
Коммит fb232af27d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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;
}