mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-08 00:40:05 +00:00
58e9c1833b
sprintf( (char *) buf, "%s\r\n", base ); Above code generates Wformat-overflow warning since both buf and base are of same size. buf should be sizeof( base ) + characters added in the format. In this case format 2 bytes for "\r\n".