mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 04:05:30 +00:00
parent
21823f9a69
commit
614624790d
|
@ -1,6 +1,12 @@
|
||||||
mbed TLS ChangeLog (Sorted per branch, date)
|
mbed TLS ChangeLog (Sorted per branch, date)
|
||||||
|
|
||||||
= mbed TLS 1.3.13 reladsed 2015-09-17
|
= mbed TLS 1.3.14 released 2015-10-xx
|
||||||
|
|
||||||
|
Bugfix
|
||||||
|
* Fix compile error in net.c with musl libc. Found and patch provided by
|
||||||
|
zhasha (#278).
|
||||||
|
|
||||||
|
= mbed TLS 1.3.13 released 2015-09-17
|
||||||
|
|
||||||
Security
|
Security
|
||||||
* Fix possible client-side NULL pointer dereference (read) when the client
|
* Fix possible client-side NULL pointer dereference (read) when the client
|
||||||
|
|
|
@ -428,7 +428,7 @@ int net_accept( int bind_fd, int *client_fd, void *client_ip )
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__socklen_t_defined) || defined(_SOCKLEN_T) || \
|
#if defined(__socklen_t_defined) || defined(_SOCKLEN_T) || \
|
||||||
defined(_SOCKLEN_T_DECLARED)
|
defined(_SOCKLEN_T_DECLARED) || defined(__DEFINED_socklen_t)
|
||||||
socklen_t n = (socklen_t) sizeof( client_addr );
|
socklen_t n = (socklen_t) sizeof( client_addr );
|
||||||
#else
|
#else
|
||||||
int n = (int) sizeof( client_addr );
|
int n = (int) sizeof( client_addr );
|
||||||
|
|
Loading…
Reference in a new issue