mbedtls/programs/util
Alfred Klomp 1d42b3ea7e pem2der.c: fix double-free bug
Found with Clang's `scan-build` tool.

load_file() allocates memory to a char** parameter. It then tries to fread() a
file, and if that fails, frees the memory and returns to caller. However, the
char** is not reset to NULL, which causes a double-free error when the caller
later passes it to free().
2014-08-14 11:34:34 +02:00
..
CMakeLists.txt Added pem2der utility application 2013-08-26 10:38:54 +02:00
pem2der.c pem2der.c: fix double-free bug 2014-08-14 11:34:34 +02:00
strerror.c Adapt sources to configurable config.h name 2014-04-30 16:40:20 +02:00