Add CRYPTO_MDEBUG_ABORT to abort() is there are any memory leaks. This will
cause "make test" failures and make resource leaks more obvious.
diff --git a/crypto/mem_dbg.c b/crypto/mem_dbg.c
index 131669a..139cfe1 100644
--- a/crypto/mem_dbg.c
+++ b/crypto/mem_dbg.c
@@ -772,6 +772,9 @@
 		{
 		BIO_printf(b,"%ld bytes leaked in %d chunks\n",
 			   ml.bytes,ml.chunks);
+#ifdef CRYPTO_MDEBUG_ABORT
+		abort();
+#endif
 		}
 	else
 		{