You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CRC32 class is not thread safe. It has a static member that is lazily initialized, but no locking is performed. This caused us random PNG files being rejected because of bogus invalid CRCs on chunk.
This is easily solved, either put the table init in a static constructor, or use Lazy<T>
The text was updated successfully, but these errors were encountered:
The CRC32 class is not thread safe. It has a static member that is lazily initialized, but no locking is performed. This caused us random PNG files being rejected because of bogus invalid CRCs on chunk.
This is easily solved, either put the table init in a static constructor, or use
Lazy<T>
The text was updated successfully, but these errors were encountered: