File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -578,10 +578,11 @@ CxPlatDpRawInterfaceInitialize(
578
578
if (!SetFileCompletionNotificationModes (
579
579
(HANDLE )Queue -> RxXsk ,
580
580
FILE_SKIP_COMPLETION_PORT_ON_SUCCESS | FILE_SKIP_SET_EVENT_ON_HANDLE )) {
581
+ Status = QUIC_STATUS_INTERNAL_ERROR ;
581
582
QuicTraceEvent (
582
583
LibraryErrorStatus ,
583
584
"[ lib] ERROR, %u, %s." ,
584
- Status ,
585
+ GetLastError () ,
585
586
"SetFileCompletionNotificationModes" );
586
587
goto Error ;
587
588
}
@@ -700,10 +701,11 @@ CxPlatDpRawInterfaceInitialize(
700
701
if (!SetFileCompletionNotificationModes (
701
702
(HANDLE )Queue -> TxXsk ,
702
703
FILE_SKIP_COMPLETION_PORT_ON_SUCCESS | FILE_SKIP_SET_EVENT_ON_HANDLE )) {
704
+ Status = QUIC_STATUS_INTERNAL_ERROR ;
703
705
QuicTraceEvent (
704
706
LibraryErrorStatus ,
705
707
"[ lib] ERROR, %u, %s." ,
706
- Status ,
708
+ GetLastError () ,
707
709
"SetFileCompletionNotificationModes" );
708
710
goto Error ;
709
711
}
You can’t perform that action at this time.
0 commit comments