-
Notifications
You must be signed in to change notification settings - Fork 5.3k
[QUIC] Adopted msquic generated interop #68288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
c6edafb
ea31c49
8d41cbb
55dc554
259545e
d0fb04e
b3d76cf
103cd1f
08b5b47
7794b58
46a7401
182a8f0
2b0172c
3162353
88a5d89
166fa96
de307c3
c955a4f
6186a23
f64b1d1
43c6417
059c3d4
cd3b00d
c6e0d6c
de15868
a73cfa8
d52fcdb
cf2377c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,6 +45,7 @@ public void Initialize<T>(IList<T> inputs, Func<T, ReadOnlyMemory<byte>> toBuffe | |
| { | ||
| ArrayPool<MemoryHandle>.Shared.Return(_handles); | ||
| _handles = ArrayPool<MemoryHandle>.Shared.Rent(inputs.Count); | ||
ManickaP marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Array.Clear(_handles); | ||
|
||
| } | ||
| if (_count < inputs.Count) | ||
| { | ||
|
|
@@ -71,7 +72,7 @@ public void Initialize<T>(IList<T> inputs, Func<T, ReadOnlyMemory<byte>> toBuffe | |
| /// </summary> | ||
| public void Reset() | ||
| { | ||
| for (int i = 0; i < _handles.Length; ++i) | ||
| for (int i = 0; i < _count; ++i) | ||
| { | ||
| _handles[i].Dispose(); | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.