Skip to content

Commit

Permalink
Reverted removing retstatus, changed to return successful retstatus
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankiesz authored Dec 6, 2023
1 parent c48129d commit ebc7b60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/source/Ice/NatBehaviorDiscovery.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ STATUS natTestIncomingDataHandler(UINT64 customData, PSocketConnection pSocketCo
UNUSED_PARAM(pSrc);
UNUSED_PARAM(pDest);

STATUS retStatus = STATUS_SUCCESS;
PNatTestData pNatTestData = (PNatTestData) customData;
PStunPacket pStunPacket = NULL;

Expand All @@ -22,7 +23,8 @@ STATUS natTestIncomingDataHandler(UINT64 customData, PSocketConnection pSocketCo

CleanUp:

return STATUS_SUCCESS;
retStatus = STATUS_SUCCESS
return retStatus;
}

/*
Expand Down

0 comments on commit ebc7b60

Please sign in to comment.