Fix a leak of the device context. r=bruce.

This commit is contained in:
bryner%uiuc.edu 2000-03-18 04:10:13 +00:00
Родитель af7f00849e
Коммит c3c4832958
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -155,6 +155,8 @@ nsFrameImageLoader::Init(nsIPresContext* aPresContext,
aPresContext->GetTwipsToPixels(&t2p);
aPresContext->GetDeviceContext(&theDC);
theDC->GetCanonicalPixelScale(devScale);
NS_RELEASE(theDC);
desiredWidth = NSToCoordRound((mDesiredSize.width * t2p)/devScale);
desiredHeight = NSToCoordRound((mDesiredSize.height * t2p)/devScale);
}