2015-02-17 19:07:29 +01:00
|
|
|
@@
|
|
|
|
expression x, y;
|
|
|
|
statement S;
|
|
|
|
@@
|
2017-07-06 11:34:12 +02:00
|
|
|
x = mbedtls_calloc(...);
|
|
|
|
y = mbedtls_calloc(...);
|
2015-02-17 19:07:29 +01:00
|
|
|
...
|
|
|
|
* if (x == NULL || y == NULL)
|
|
|
|
S
|
2015-02-17 19:40:48 +01:00
|
|
|
|
|
|
|
@@
|
|
|
|
expression x, y;
|
|
|
|
statement S;
|
|
|
|
@@
|
|
|
|
if (
|
2017-07-06 11:34:12 +02:00
|
|
|
* (x = mbedtls_calloc(...)) == NULL
|
2015-02-17 19:40:48 +01:00
|
|
|
||
|
2017-07-06 11:34:12 +02:00
|
|
|
* (y = mbedtls_calloc(...)) == NULL
|
2015-02-17 19:40:48 +01:00
|
|
|
)
|
|
|
|
S
|