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