1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Merge pull request #8497 from ronald-cron-arm/remove-cocci-files-2.28

[Backport 2.28] Remove unused *.cocci files
This commit is contained in:
Gilles Peskine
2023-11-20 14:07:36 +00:00
committed by GitHub
2 changed files with 0 additions and 27 deletions

View File

@ -1,20 +0,0 @@
@@
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

View File

@ -1,7 +0,0 @@
@rm_calloc_cast@
expression x, n, m;
type T;
@@
x =
- (T *)
mbedtls_calloc(n, m)