mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-08 10:06:28 +00:00
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".