mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 01:15:43 +01:00
Merge remote-tracking branch 'public/pr/1563' into development
This commit is contained in:
commit
cdbb2f2168
@ -20,6 +20,8 @@ Bugfix
|
|||||||
return value. Found by @davidwu2000. #839
|
return value. Found by @davidwu2000. #839
|
||||||
* Fix a memory leak in mbedtls_x509_csr_parse(), found by catenacyber,
|
* Fix a memory leak in mbedtls_x509_csr_parse(), found by catenacyber,
|
||||||
Philippe Antoine. Fixes #1623.
|
Philippe Antoine. Fixes #1623.
|
||||||
|
* Remove unused headers included in x509.c. Found by Chris Hanson and fixed
|
||||||
|
by Brendan Shanks. Part of a fix for #992.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Change the shebang line in Perl scripts to look up perl in the PATH.
|
* Change the shebang line in Perl scripts to look up perl in the PATH.
|
||||||
|
@ -70,15 +70,6 @@
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_FS_IO)
|
|
||||||
#include <stdio.h>
|
|
||||||
#if !defined(_WIN32)
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <dirent.h>
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define CHECK(code) if( ( ret = code ) != 0 ){ return( ret ); }
|
#define CHECK(code) if( ( ret = code ) != 0 ){ return( ret ); }
|
||||||
#define CHECK_RANGE(min, max, val) if( val < min || val > max ){ return( ret ); }
|
#define CHECK_RANGE(min, max, val) if( val < min || val > max ){ return( ret ); }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user