Out parameters should be set to null to account for failure cases. r=jband, sr=jst@netscape.com

This commit is contained in:
vidur%netscape.com 2001-09-06 23:05:21 +00:00
Родитель 0a61d45966
Коммит ce1dcfb2eb
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -2321,6 +2321,8 @@ nsEventListenerManager::CreateEvent(nsIPresContext* aPresContext,
const nsAReadableString& aEventType,
nsIDOMEvent** aDOMEvent)
{
*aDOMEvent = nsnull;
nsAutoString str(aEventType);
if (!aEvent && !str.EqualsIgnoreCase("MouseEvents") && !str.EqualsIgnoreCase("KeyEvents") &&
!str.EqualsIgnoreCase("HTMLEvents") && !str.EqualsIgnoreCase("MutationEvents") &&