Fix silly refcounting error that led to leaks. Bug 305262, r=scootermorris,

sr=roc
This commit is contained in:
bzbarsky%mit.edu 2005-08-24 00:05:39 +00:00
Родитель 75a4cc01ed
Коммит 66fcc37f25
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -1160,10 +1160,8 @@ nsSVGOuterSVGFrame::GetCoordContextProvider()
// Our <svg> content element is the CoordContextProvider for our children:
nsSVGCoordCtxProvider *provider;
mContent->QueryInterface(NS_GET_IID(nsSVGCoordCtxProvider), (void**)&provider);
CallQueryInterface(mContent, &provider);
NS_IF_ADDREF(provider);
return provider;
}