It turned out that the internal trace cleanup handler was added too
late, so it would be executed before OPENSSL_cleanup().
This results in address errors, as the trace code that's executed in
OPENSSL_cleanup() itself tries to reach for data that's been freed at
that point.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9196)
{
char *val;
+ /*
+ * We add this handler as early as possible to ensure it's executed
+ * as late as possible, i.e. after the TRACE code has done its cleanup
+ * (which happens last in OPENSSL_cleanup).
+ */
+ atexit(cleanup_trace);
+
trace_data_stack = sk_tracedata_new_null();
val = OPENSSL_strdup(str);
}
OPENSSL_free(val);
- atexit(cleanup_trace);
}
#endif /* OPENSSL_NO_TRACE */
{
char *val;
+ /*
+ * We add this handler as early as possible to ensure it's executed
+ * as late as possible, i.e. after the TRACE code has done its cleanup
+ * (which happens last in OPENSSL_cleanup).
+ */
+ atexit(cleanup_trace);
+
trace_data_stack = sk_tracedata_new_null();
val = OPENSSL_strdup(str);
}
OPENSSL_free(val);
- atexit(cleanup_trace);
}
#endif /* OPENSSL_NO_TRACE */