Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/libraries/Common/src/System/Net/CookieParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ internal CookieTokenizer(string tokenStream) : this()
{
_length = tokenStream.Length;
_tokenStream = tokenStream;
_value = string.Empty;
}

internal bool EndOfCookie
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Internal.Cryptography
internal struct CngAlgorithmCore
{
private readonly string _disposedName;
public CngAlgorithm DefaultKeyType;
public CngAlgorithm? DefaultKeyType;
private CngKey? _lazyKey;
private bool _disposed;

Expand Down