mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[SHLWAPI] Fix SHCreateMemStream corner case (#6224)
When the system run out of memory, check NULL and fail elegantly if necessary. This doesn't fix CORE-19229 but I think it needs a fix. CORE-19229
This commit is contained in:
parent
6d265d1fd8
commit
5d9f622eeb
1 changed files with 4 additions and 0 deletions
|
@ -669,6 +669,10 @@ IStream * WINAPI SHCreateMemStream(const BYTE *lpbData, UINT dwDataLen)
|
|||
if (!strm)
|
||||
HeapFree(GetProcessHeap(), 0, lpbDup);
|
||||
}
|
||||
#ifdef __REACTOS__
|
||||
if (!strm)
|
||||
return NULL;
|
||||
#endif
|
||||
return &strm->IStream_iface;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue