Fixing runtime bustage from missing addref

This commit is contained in:
bryner%brianryner.com 2004-02-27 18:24:36 +00:00
Родитель 397549f842
Коммит 70b6682c31
2 изменённых файлов: 4 добавлений и 0 удалений

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

@ -626,6 +626,8 @@ nsPresContext::Init(nsIDeviceContext* aDeviceContext)
if (!mEventManager)
return NS_ERROR_OUT_OF_MEMORY;
NS_ADDREF(mEventManager);
rv = mEventManager->Init();
NS_ENSURE_SUCCESS(rv, rv);

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

@ -626,6 +626,8 @@ nsPresContext::Init(nsIDeviceContext* aDeviceContext)
if (!mEventManager)
return NS_ERROR_OUT_OF_MEMORY;
NS_ADDREF(mEventManager);
rv = mEventManager->Init();
NS_ENSURE_SUCCESS(rv, rv);