Skip to content

Commit ce6fab1

Browse files
authored
[QUIC] Fix typo preventing freeing of TLS secrets (#120165)
1 parent 5164c79 commit ce6fab1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/System.Net.Quic/src/System/Net/Quic/Internal/MsQuicTlsSecret.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public unsafe void Dispose()
131131

132132
QUIC_TLS_SECRETS* tlsSecrets = _tlsSecrets;
133133
_tlsSecrets = null;
134-
NativeMemory.Free(_tlsSecrets);
134+
NativeMemory.Free(tlsSecrets);
135135
}
136136
}
137137
}

0 commit comments

Comments
 (0)