[WIN32SS][NTGDI] Delete unnecessary (ULONG) cast CORE-15755

This commit is contained in:
Katayama Hirofumi MZ 2019-04-11 18:23:32 +09:00
parent bc9f3ed887
commit 983cd57c1e

View file

@ -5492,7 +5492,7 @@ NtGdiGetFontFamilyInfo(HDC Dc,
/* Allocate space for a safe copy */
Status = RtlULongMult(SafeInfoCount, sizeof(FONTFAMILYINFO), &DataSize);
if (!NT_SUCCESS(Status) || (ULONG)DataSize > LONG_MAX)
if (!NT_SUCCESS(Status) || DataSize > LONG_MAX)
{
DPRINT1("Overflowed.\n");
EngSetLastError(ERROR_INVALID_PARAMETER);