From fc0c4ed9a3103e0e6534311923668879fc8e0875 Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Sat, 26 Nov 2022 16:20:59 -0500 Subject: Removed openssl, and curl, and added mbedded tls. Almost fully removed curl, needs more testing. Fixed most issues, now trying to cross compile. Fix? Sigh. --- lib/mbedtls-2.27.0/scripts/find-mem-leak.cocci | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/mbedtls-2.27.0/scripts/find-mem-leak.cocci (limited to 'lib/mbedtls-2.27.0/scripts/find-mem-leak.cocci') diff --git a/lib/mbedtls-2.27.0/scripts/find-mem-leak.cocci b/lib/mbedtls-2.27.0/scripts/find-mem-leak.cocci new file mode 100644 index 0000000..8179e2b --- /dev/null +++ b/lib/mbedtls-2.27.0/scripts/find-mem-leak.cocci @@ -0,0 +1,20 @@ +@@ +expression x, y; +statement S; +@@ + x = mbedtls_calloc(...); + y = mbedtls_calloc(...); + ... +* if (x == NULL || y == NULL) + S + +@@ +expression x, y; +statement S; +@@ + if ( +* (x = mbedtls_calloc(...)) == NULL + || +* (y = mbedtls_calloc(...)) == NULL + ) + S -- cgit v1.2.3