Add a rule for another type of memory leak to find-mem-leak.cocci.
diff --git a/scripts/find-mem-leak.cocci b/scripts/find-mem-leak.cocci
index a3f7ca9..34cfd08 100644
--- a/scripts/find-mem-leak.cocci
+++ b/scripts/find-mem-leak.cocci
@@ -7,3 +7,14 @@
   ...
 * if (x == NULL || y == NULL)
     S
+
+@@
+expression x, y;
+statement S;
+@@
+  if (
+*   (x = polarssl_malloc(...)) == NULL
+    ||
+*   (y = polarssl_malloc(...)) == NULL
+  )
+    S