Fix CA2019
This commit is contained in:
@@ -801,6 +801,9 @@ dotnet_diagnostic.CA2016.severity = warning
|
|||||||
# The 'count' argument to Buffer.BlockCopy should specify the number of bytes to copy.
|
# The 'count' argument to Buffer.BlockCopy should specify the number of bytes to copy.
|
||||||
dotnet_diagnostic.CA2018.severity = warning
|
dotnet_diagnostic.CA2018.severity = warning
|
||||||
|
|
||||||
|
# ThreadStatic fields should not use inline initialization.
|
||||||
|
dotnet_diagnostic.CA2019.severity = warning
|
||||||
|
|
||||||
### Security Rules
|
### Security Rules
|
||||||
### https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/security-warnings
|
### https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/security-warnings
|
||||||
|
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ namespace OpenRA.Mods.Common.AudioLoaders
|
|||||||
|
|
||||||
// This buffer can be static because it can only be used by 1 instance per thread.
|
// This buffer can be static because it can only be used by 1 instance per thread.
|
||||||
[ThreadStatic]
|
[ThreadStatic]
|
||||||
static float[] conversionBuffer = null;
|
static float[] conversionBuffer;
|
||||||
|
|
||||||
public OggStream(OggFormat format)
|
public OggStream(OggFormat format)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user