Remove unreachable assignments

This is harmless, but we might as well remove the unreachable line. If we
ever add a break to the loop and we don't think of changing the surrounding
code, it would make more sense not to set exit_code to SUCCESS.

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2024-10-07 11:23:39 +02:00
parent 42919e0821
commit f7b62e063d
2 changed files with 0 additions and 4 deletions

View File

@ -359,8 +359,6 @@ int main(void)
goto exit; goto exit;
} }
exit_code = MBEDTLS_EXIT_SUCCESS;
exit: exit:
mbedtls_net_free(&client_fd); mbedtls_net_free(&client_fd);
mbedtls_net_free(&listen_fd); mbedtls_net_free(&listen_fd);

View File

@ -938,8 +938,6 @@ accept:
} }
exit_code = MBEDTLS_EXIT_SUCCESS;
exit: exit:
#ifdef MBEDTLS_ERROR_C #ifdef MBEDTLS_ERROR_C