File tree 1 file changed +2
-2
lines changed
src/Shared/runtime/Quic/Implementations/MsQuic/Internal 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ internal unsafe uint UnsafeGetParam(
223
223
public async ValueTask < MsQuicSecurityConfig ? > CreateSecurityConfig ( X509Certificate certificate , string ? certFilePath , string ? privateKeyFilePath )
224
224
{
225
225
MsQuicSecurityConfig ? secConfig = null ;
226
- var tcs = new TaskCompletionSource < object ? > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
226
+ var tcs = new TaskCompletionSource ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
227
227
uint secConfigCreateStatus = MsQuicStatusCodes . InternalError ;
228
228
uint createConfigStatus ;
229
229
IntPtr unmanagedAddr = IntPtr . Zero ;
@@ -283,7 +283,7 @@ void SecCfgCreateCallbackHandler(
283
283
{
284
284
secConfig = new MsQuicSecurityConfig ( this , securityConfig ) ;
285
285
secConfigCreateStatus = status ;
286
- tcs . SetResult ( null ) ;
286
+ tcs . SetResult ( ) ;
287
287
}
288
288
289
289
await tcs . Task . ConfigureAwait ( false ) ;
You can’t perform that action at this time.
0 commit comments