Bug 495075 -- pUnkForRelease incorrectly assigned in nsDataObj::GetFileContents_IStream. r=emaijala, sr=roc

--HG--
extra : rebase_source : cbdf37f2a4e8e0f2b7b0740327ae22905b5a0ccd
This commit is contained in:
Siddharth Agarwal 2009-05-27 20:52:18 +05:30
Родитель 8aa60a10f5
Коммит b77886ef5f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2001,7 +2001,7 @@ HRESULT nsDataObj::GetFileContents_IStream(FORMATETC& aFE, STGMEDIUM& aSTG)
aSTG.tymed = TYMED_ISTREAM;
aSTG.pstm = pStream;
aSTG.pUnkForRelease = pStream;
aSTG.pUnkForRelease = NULL;
return S_OK;
}