Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
63 commits
Select commit Hold shift + click to select a range
10f15f7
System.Private.CoreLib
reflectronic Jun 20, 2021
61340eb
System.Net.Security
reflectronic Jun 20, 2021
96d410b
System.Net.NameResolution
reflectronic Jun 20, 2021
f93fe74
System.Net.NetworkInformation
reflectronic Jun 20, 2021
6badbdd
System.Net.Quic
reflectronic Jun 20, 2021
d2b561f
System.Net.HttpListener
reflectronic Jun 20, 2021
38824c5
nint casts
reflectronic Jun 20, 2021
8ec610e
System.Text.Encoding.CodePages
reflectronic Jun 20, 2021
2db0e86
intptr casts
reflectronic Jun 20, 2021
658bf85
System.Speech
reflectronic Jun 20, 2021
0930248
System.ServiceProcess.ServiceController
reflectronic Jun 20, 2021
89ded43
NativeMemoryHelper in System.Speech
reflectronic Jun 20, 2021
340735a
NativeMemoryHelper System.Text.Encoding.CodePages
reflectronic Jun 20, 2021
7038fca
Crypto
reflectronic Jun 20, 2021
453f15e
System.Reflection.Metadata
reflectronic Jun 20, 2021
325b20d
System.Net.Http.WinHttpHandler
reflectronic Jun 20, 2021
36c48a4
System.Management
reflectronic Jun 20, 2021
09d0361
System.Diagnostics.EventLog
reflectronic Jun 20, 2021
190fb6b
System.Drawing.Common
reflectronic Jun 20, 2021
673925a
System.DirectoryServices.Protocols
reflectronic Jun 20, 2021
29e37a5
System.DirectoryServices.AccountManagement
reflectronic Jun 20, 2021
2510792
System.DirectoryServices
reflectronic Jun 20, 2021
935a77a
System.Data.Odbc
reflectronic Jun 20, 2021
68a9dc7
System.Diagnostics.PerformanceCounter
reflectronic Jun 20, 2021
443c362
more System.Drawing.Common
reflectronic Jun 20, 2021
5dd3cf6
more System.Private.CoreLib
reflectronic Jun 21, 2021
8783e8c
Fix build break
reflectronic Jun 21, 2021
3184c15
Fix additional embarrassing mistakes
reflectronic Jun 21, 2021
6a0746a
Fix mistake
reflectronic Jun 21, 2021
59cfa9b
fixing
reflectronic Jun 21, 2021
f8d77c2
fix project files
reflectronic Jun 21, 2021
8bc626d
powershell doesn't know how to preserve BOM
reflectronic Jun 21, 2021
d52bb61
fix project files
reflectronic Jun 23, 2021
aa86b70
does SRM csproj have BOM?
reflectronic Jun 23, 2021
e6b6e8e
more csproj fixes
reflectronic Jun 23, 2021
f0fb97a
one last time
reflectronic Jun 23, 2021
3423d98
Some changes
reflectronic Jun 23, 2021
b5dd0da
revert System.DirectoryServices.Protocols
reflectronic Jun 30, 2021
8a1f781
revert System.DirectoryServices.AccountManagement
reflectronic Jun 30, 2021
6fe4d7c
revert System.DirectoryServices
reflectronic Jun 30, 2021
c2275fc
fix corelib and other stuff
reflectronic Jun 30, 2021
068248c
revert System.Drawing.Common
reflectronic Jun 30, 2021
b875528
fix SafeNativeMemoryHandle
reflectronic Jun 30, 2021
f89bc04
Sysem.Text.Encoding.CodePages safenativememoryhandle
reflectronic Jun 30, 2021
2a961d3
fixxxx
reflectronic Jun 30, 2021
1b0f51a
do it again
reflectronic Jun 30, 2021
af272a8
Improve crypto
reflectronic Jun 30, 2021
a2042c6
EventLog and other stuff
reflectronic Jul 14, 2021
6e57302
misc other updates
reflectronic Jul 14, 2021
db1ee0c
Back out System.ServiceProcess
reflectronic Jul 14, 2021
e79d136
final fix perhaps
reflectronic Jul 14, 2021
b7c3292
Merge branch 'main' into replace-allochglobal
reflectronic Jul 14, 2021
7156b1e
source.dot.net lied to me
reflectronic Jul 14, 2021
3ea5947
Update MsQuicStream.cs
reflectronic Jul 14, 2021
fc6147a
fix
reflectronic Jul 14, 2021
1b3e561
Compile errors
reflectronic Jul 30, 2021
1f60dbf
Another fix
reflectronic Jul 30, 2021
852508b
Fix
reflectronic Jul 30, 2021
332e3aa
add unsafe
reflectronic Jul 30, 2021
de3481e
revert ldap interop
reflectronic Jul 30, 2021
8d3fbdd
temp change
reflectronic Jul 30, 2021
c31c674
improvement
reflectronic Jul 30, 2021
8a12cec
add unsafe
reflectronic Jul 30, 2021
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
Prev Previous commit
Next Next commit
Update MsQuicStream.cs
  • Loading branch information
reflectronic authored Jul 14, 2021
commit 3ea59478bd217d9e42e0728d7052ba096a400855
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private sealed class State
// Set once stream have been shutdown.
public readonly TaskCompletionSource ShutdownCompletionSource = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously);

public void Cleanup()
public unsafe void Cleanup()
{
if (NetEventSource.Log.IsEnabled()) NetEventSource.Info(this, $"{TraceId} releasing handles.");

Expand Down