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