mbedtls/programs/ssl
Alfred Klomp 7c03424d1c ssl_mail_client.c: silence warning, check base64_encode() status
Found with Clang's `scan-build` tool.

ssl_mail_client.c does a dead store by assigning the return value of
base64_encode() to `len` and not using the value.  This causes
scan-build to issue a warning.

Instead of storing the return value into `len`, store it to `ret`, since
base64_encode() returns a status code, not a length. Also check if the
return value is nonzero and print an error; this silences scan-build.
2014-08-14 11:34:35 +02:00
..
test-ca - Changed certificate verify behaviour to comply with RFC 6125 section 6.3 to not match CN if subjectAltName extension is present. 2012-05-10 14:12:46 +00:00
CA-HOWTO.txt - Renamed include directory to polarssl 2009-01-03 21:22:43 +00:00
CMakeLists.txt Only search for Pthread on Windows platforms 2013-12-30 15:28:46 +01:00
ssl_client1.c Adapt programs / test suites 2014-07-09 10:19:24 +02:00
ssl_client2.c Adapt programs / test suites 2014-07-09 10:19:24 +02:00
ssl_fork_server.c Adapt programs / test suites 2014-07-09 10:19:24 +02:00
ssl_mail_client.c ssl_mail_client.c: silence warning, check base64_encode() status 2014-08-14 11:34:35 +02:00
ssl_pthread_server.c Remove unreachable code from ssl_pthread_server 2014-08-14 11:34:34 +02:00
ssl_server2.c Adapt programs / test suites 2014-07-09 10:19:24 +02:00
ssl_server.c Adapt programs / test suites 2014-07-09 10:19:24 +02:00