blob: 34cfd082d25b9f2e6e291e98dea557901ab0b250 [file] [log] [blame]
Mansour Moufid961c6262015-02-17 13:07:29 -05001@@
2expression x, y;
3statement S;
4@@
5 x = polarssl_malloc(...);
6 y = polarssl_malloc(...);
7 ...
8* if (x == NULL || y == NULL)
9 S
Mansour Moufid263438b2015-02-17 13:40:48 -050010
11@@
12expression x, y;
13statement S;
14@@
15 if (
16* (x = polarssl_malloc(...)) == NULL
17 ||
18* (y = polarssl_malloc(...)) == NULL
19 )
20 S