mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 16:35:41 +01:00
Fix clang warnings in applications
Some fd would be used uninitialized if we goto exit early.
This commit is contained in:
parent
a97c015f89
commit
68821da01e
@ -74,7 +74,7 @@ static void my_debug( void *ctx, int level, const char *str )
|
||||
|
||||
int main( int argc, char *argv[] )
|
||||
{
|
||||
int ret, len, server_fd;
|
||||
int ret, len, server_fd = -1;
|
||||
unsigned char buf[1024];
|
||||
const char *pers = "ssl_client1";
|
||||
|
||||
|
@ -96,7 +96,7 @@ int main( int argc, char *argv[] )
|
||||
{
|
||||
int ret, len, cnt = 0, pid;
|
||||
int listen_fd;
|
||||
int client_fd;
|
||||
int client_fd = -1;
|
||||
unsigned char buf[1024];
|
||||
const char *pers = "ssl_fork_server";
|
||||
|
||||
|
@ -143,7 +143,7 @@ static void my_debug( void *ctx, int level, const char *str )
|
||||
static int ssl_test( struct options *opt )
|
||||
{
|
||||
int ret, i;
|
||||
int client_fd;
|
||||
int client_fd = -1;
|
||||
int bytes_to_read;
|
||||
int bytes_to_write;
|
||||
int offset_to_read = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user