Module: wine Branch: master Commit: 79e31f6d40d1528a04f90a8955c6ec9ae9595b80 URL: http://source.winehq.org/git/wine.git/?a=commit;h=79e31f6d40d1528a04f90a8955...
Author: Michael Stefaniuc mstefani@redhat.de Date: Sun Nov 2 00:25:54 2008 +0100
ole32: Do not cast NULL.
---
dlls/ole32/storage32.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index 180619a..3c88a36 100644 --- a/dlls/ole32/storage32.c +++ b/dlls/ole32/storage32.c @@ -5895,7 +5895,7 @@ HRESULT WINAPI StgOpenStorageEx(const WCHAR* pwcsName, DWORD grfMode, DWORD stgf return STG_E_INVALIDPARAMETER; }
- return StgOpenStorage(pwcsName, NULL, grfMode, (SNB)NULL, 0, (IStorage **)ppObjectOpen); + return StgOpenStorage(pwcsName, NULL, grfMode, NULL, 0, (IStorage **)ppObjectOpen); }
@@ -6583,7 +6583,7 @@ static HRESULT OLECONVERT_LoadOLE10(LPOLESTREAM pOleStream, OLECONVERT_OLESTREAM int max_try = 6;
pData->pData = NULL; - pData->pstrOleObjFileName = (CHAR *) NULL; + pData->pstrOleObjFileName = NULL;
for( nTryCnt=0;nTryCnt < max_try; nTryCnt++) {