Check for errors from SSL_COMP_add_compression_method().
Notified by Andrew Marlow <AMARLOW1@bloomberg.net>
diff --git a/ssl/ssltest.c b/ssl/ssltest.c
index 7bb4152..0c68460 100644
--- a/ssl/ssltest.c
+++ b/ssl/ssltest.c
@@ -594,7 +594,14 @@
if (cm != NULL)
{
if (cm->type != NID_undef)
- SSL_COMP_add_compression_method(comp, cm);
+ {
+ if (SSL_COMP_add_compression_method(comp, cm) != 0)
+ {
+ fprintf(stderr,
+ "Failed to add compression method\n");
+ ERR_print_errors_fp(stderr);
+ }
+ }
else
{
fprintf(stderr,