mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 17:05:42 +01:00
Do not set done in case of a fall-through
This commit is contained in:
parent
5bd422937a
commit
c7878113cb
@ -1793,6 +1793,8 @@ int ssl_write_record( ssl_context *ssl )
|
||||
SSL_DEBUG_RET( 1, "ssl_hw_record_write", ret );
|
||||
return POLARSSL_ERR_SSL_HW_ACCEL_FAILED;
|
||||
}
|
||||
|
||||
if( ret == 0 )
|
||||
done = 1;
|
||||
}
|
||||
#endif
|
||||
@ -1972,6 +1974,8 @@ int ssl_read_record( ssl_context *ssl )
|
||||
SSL_DEBUG_RET( 1, "ssl_hw_record_read", ret );
|
||||
return POLARSSL_ERR_SSL_HW_ACCEL_FAILED;
|
||||
}
|
||||
|
||||
if( ret == 0 )
|
||||
done = 1;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user