File tree Expand file tree Collapse file tree 4 files changed +8
-34
lines changed Expand file tree Collapse file tree 4 files changed +8
-34
lines changed Original file line number Diff line number Diff line change @@ -106,9 +106,7 @@ jobs:
106106 echo "::endgroup::"
107107 echo -e "${{ env.bashPass }} Built Coverage Tests ${{ env.bashEnd }}"
108108
109- wget https://github.com/linux-test-project/lcov/releases/download/v2.3.1/lcov-2.3.1.tar.gz
110- tar -xvzf lcov-2.3.1.tar.gz
111- ./lcov-2.3.1/bin/lcov --list --rc branch_coverage=1 test/unit-test/build/coverage.info
109+ lcov --summary --rc lcov_branch_coverage=1 test/unit-test/build/coverage.info
112110
113111 echo -e "${{ env.bashPass }} ${{ env.stepName }} ${{ env.bashEnd }}"
114112
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3900,12 +3900,6 @@ void vSocketWakeUpUser( FreeRTOS_Socket_t * pxSocket )
39003900 if ( pxParentSocket -> u .xTCP .bits .bReuseSocket == pdFALSE_UNSIGNED )
39013901 {
39023902 pxClientSocket = pxParentSocket -> u .xTCP .pxPeerSocket ;
3903-
3904- if ( pxClientSocket != NULL )
3905- {
3906- FreeRTOS_printf ( ( "prvAcceptWaitClient: client %p parent %p\n" ,
3907- ( void * ) pxClientSocket , ( void * ) pxParentSocket ) );
3908- }
39093903 }
39103904 else
39113905 {
@@ -3932,6 +3926,12 @@ void vSocketWakeUpUser( FreeRTOS_Socket_t * pxSocket )
39323926 }
39333927 ( void ) xTaskResumeAll ();
39343928
3929+ if ( ( pxClientSocket != NULL ) && ( pxParentSocket -> u .xTCP .bits .bReuseSocket == pdFALSE_UNSIGNED ) )
3930+ {
3931+ FreeRTOS_printf ( ( "prvAcceptWaitClient: client %p parent %p\n" ,
3932+ ( void * ) pxClientSocket , ( void * ) pxParentSocket ) );
3933+ }
3934+
39353935 if ( pxClientSocket != NULL )
39363936 {
39373937 if ( pxAddressLength != NULL )
Original file line number Diff line number Diff line change @@ -273,8 +273,7 @@ void vProcessGeneratedUDPPacket_IPv4( NetworkBufferDescriptor_t * const pxNetwor
273273
274274 /* 'ulIPAddress' might have become the address of the Gateway.
275275 * Find the route again. */
276-
277- pxNetworkBuffer -> pxEndPoint = FreeRTOS_FindEndPointOnNetMask ( pxNetworkBuffer -> xIPAddress .ulIP_IPv4 );
276+ pxNetworkBuffer -> pxEndPoint = FreeRTOS_FindEndPointOnNetMask ( ulIPAddress );
278277
279278 if ( pxNetworkBuffer -> pxEndPoint == NULL )
280279 {
You can’t perform that action at this time.
0 commit comments