diff options
| author | Marco Carvalho <marcolucio27@gmail.com> | 2023-06-14 21:34:55 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-15 00:34:55 +0000 |
| commit | 82f90704a0662bba7254cb0bc262d785acdabc67 (patch) | |
| tree | 72d32a909661d7f26217eee66ffe1d068dcfe101 /src/Ryujinx.HLE/HOS/Services/Ssl | |
| parent | f978d3726a87dcc067abb2541b96b831e4390fbb (diff) | |
Blocks should be synchronized on read-only fields (#5212)
* Blocks should be synchronized on read-only fields
* more readonlys
* fix alignment
* more
* Update ISelfController.cs
* simplify new
* simplify new
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Ssl')
| -rw-r--r-- | src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs index abbc1354..dae0698c 100644 --- a/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs +++ b/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs @@ -40,13 +40,13 @@ namespace Ryujinx.HLE.HOS.Services.Ssl } } - private VirtualFileSystem _virtualFileSystem; + private VirtualFileSystem _virtualFileSystem; private IntegrityCheckLevel _fsIntegrityCheckLevel; - private ContentManager _contentManager; - private bool _initialized; + private ContentManager _contentManager; + private bool _initialized; private Dictionary<CaCertificateId, CertStoreEntry> _certificates; - private object _lock = new object(); + private readonly object _lock = new(); private struct CertStoreFileHeader { |
