2015-02-17 19:07:29 +01:00
|
|
|
@@
|
|
|
|
expression x, y;
|
|
|
|
statement S;
|
|
|
|
@@
|
2015-04-08 12:49:31 +02:00
|
|
|
x = mbedtls_malloc(...);
|
|
|
|
y = mbedtls_malloc(...);
|
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 (
|
2015-04-08 12:49:31 +02:00
|
|
|
* (x = mbedtls_malloc(...)) == NULL
|
2015-02-17 19:40:48 +01:00
|
|
|
||
|
2015-04-08 12:49:31 +02:00
|
|
|
* (y = mbedtls_malloc(...)) == NULL
|
2015-02-17 19:40:48 +01:00
|
|
|
)
|
|
|
|
S
|