[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:
Katayama Hirofumi MZ 2023-12-25 08:22:08 +09:00 committed by GitHub
parent 6d265d1fd8
commit 5d9f622eeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}