Fix compile error in net.c with musl libc

fixes #278
This commit is contained in:
Manuel Pégourié-Gonnard 2015-10-05 12:16:06 +01:00
parent 21823f9a69
commit 614624790d
2 changed files with 8 additions and 2 deletions

View file

@ -1,6 +1,12 @@
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
* Fix possible client-side NULL pointer dereference (read) when the client

View file

@ -428,7 +428,7 @@ int net_accept( int bind_fd, int *client_fd, void *client_ip )
#endif
#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 );
#else
int n = (int) sizeof( client_addr );