[MSVIDC32] Keep using CRAM_MAGIC for info structure validation (#6498)

CRAM_MAGIC is being used to validate the info context structure contents
when the driver routines are being called, so partially revert 8be912147.

Just report "MSVC" as the main FourCC handler in CRAM_GetInfo() instead.

CORE-19453 CORE-15382
This commit is contained in:
Katayama Hirofumi MZ 2024-02-15 22:08:47 +09:00 committed by GitHub
parent fa29a61271
commit e0b67a2990
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -538,7 +538,11 @@ static LRESULT CRAM_GetInfo( const Msvideo1Context *info, ICINFO *icinfo, DWORD
icinfo->dwSize = sizeof(ICINFO);
icinfo->fccType = ICTYPE_VIDEO;
#ifdef __REACTOS__
icinfo->fccHandler = MSVC_MAGIC;
#else
icinfo->fccHandler = info ? info->dwMagic : CRAM_MAGIC;
#endif
icinfo->dwFlags = 0;
icinfo->dwVersion = ICVERSION;
icinfo->dwVersionICM = ICVERSION;
@ -583,11 +587,7 @@ LRESULT WINAPI CRAM_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg,
if( info )
{
memset( info, 0, sizeof *info );
#ifdef __REACTOS__
info->dwMagic = MSVC_MAGIC;
#else
info->dwMagic = CRAM_MAGIC;
#endif
}
r = (LRESULT) info;
break;