Remove local shadowing of variable.

This commit is contained in:
bruce%cybersight.com 1999-05-28 05:29:26 +00:00
Родитель b0af768890
Коммит b0efa83056
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -306,7 +306,7 @@ nsServiceManagerImpl::RegisterService(const nsCID& aClass, nsISupports* aService
rv = NS_ERROR_FAILURE;
}
else {
nsServiceEntry* entry = new nsServiceEntry(aClass, aService);
entry = new nsServiceEntry(aClass, aService);
if (entry == NULL)
rv = NS_ERROR_OUT_OF_MEMORY;
else {