mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-25 02:01:04 +00:00
Merge remote-tracking branch 'upstream-public/pr/1328' into development
This commit is contained in:
commit
3b8fbaab87
|
@ -108,7 +108,7 @@ Bugfix
|
||||||
* Fix incorrect unit in benchmark output. #850
|
* Fix incorrect unit in benchmark output. #850
|
||||||
* Fix crash when calling mbedtls_ssl_cache_free() twice. Found by
|
* Fix crash when calling mbedtls_ssl_cache_free() twice. Found by
|
||||||
MilenkoMitrovic, #1104
|
MilenkoMitrovic, #1104
|
||||||
* Fix mbedtls_timing_alarm(0) on Unix.
|
* Fix mbedtls_timing_alarm(0) on Unix and MinGW.
|
||||||
* Fix use of uninitialized memory in mbedtls_timing_get_timer when reset=1.
|
* Fix use of uninitialized memory in mbedtls_timing_get_timer when reset=1.
|
||||||
* Fix possible memory leaks in mbedtls_gcm_self_test().
|
* Fix possible memory leaks in mbedtls_gcm_self_test().
|
||||||
* Added missing return code checks in mbedtls_aes_self_test().
|
* Added missing return code checks in mbedtls_aes_self_test().
|
||||||
|
|
|
@ -278,6 +278,14 @@ void mbedtls_set_alarm( int seconds )
|
||||||
{
|
{
|
||||||
DWORD ThreadId;
|
DWORD ThreadId;
|
||||||
|
|
||||||
|
if( seconds == 0 )
|
||||||
|
{
|
||||||
|
/* No need to create a thread for this simple case.
|
||||||
|
* Also, this shorcut is more reliable at least on MinGW32 */
|
||||||
|
mbedtls_timing_alarmed = 1;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
mbedtls_timing_alarmed = 0;
|
mbedtls_timing_alarmed = 0;
|
||||||
alarmMs = seconds * 1000;
|
alarmMs = seconds * 1000;
|
||||||
CloseHandle( CreateThread( NULL, 0, TimerProc, NULL, 0, &ThreadId ) );
|
CloseHandle( CreateThread( NULL, 0, TimerProc, NULL, 0, &ThreadId ) );
|
||||||
|
|
Loading…
Reference in a new issue