amerkoleci / Vortice.Windows

.NET bindings for Direct3D12, Direct3D11, WIC, Direct2D1, XInput, XAudio, X3DAudio, DXC, Direct3D9 and DirectInput.
MIT License
1.01k stars 73 forks source link

Fix System.OverflowException in IMFAttributes.Get<T>(Guid guidKey); #384

Closed manju-summoner closed 1 year ago

manju-summoner commented 1 year ago

System.OverflowException may occur when converting from uint to int, ulong to long, or UIntPtr to IntPtr.

Example:

Convert.ChangeType(ulong.MaxValue, typeof(long)); //System.OverflowException

Fixed:

Convert.ChangeType(unchecked((long)ulong.MaxValue), typeof(long)); //success