Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
b91926fd
Commit
b91926fd
authored
Jun 09, 2017
by
davidcunado-arm
Committed by
GitHub
Jun 09, 2017
Browse files
Merge pull request #968 from antonio-nino-diaz-arm/an/snprintf-alt
mbedtls: Don't use tf_snprintf if option not defined
parents
c906d2a8
c46c18c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
drivers/auth/mbedtls/mbedtls_common.c
View file @
b91926fd
...
...
@@ -9,6 +9,7 @@
/* mbed TLS headers */
#include <mbedtls/memory_buffer_alloc.h>
#include <mbedtls/platform.h>
#include <mbedtls_config.h>
/*
* mbed TLS heap
...
...
@@ -31,8 +32,10 @@ void mbedtls_init(void)
/* Initialize the mbed TLS heap */
mbedtls_memory_buffer_alloc_init
(
heap
,
MBEDTLS_HEAP_SIZE
);
#ifdef MBEDTLS_PLATFORM_SNPRINTF_ALT
/* Use reduced version of snprintf to save space. */
mbedtls_platform_set_snprintf
(
tf_snprintf
);
#endif
ready
=
1
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment