mirror of
https://github.com/Ai-Thinker-Open/Ai-Thinker-Open_RTL8710BX_ALIOS_SDK.git
synced 2025-03-19 19:22:55 +00:00
20 lines
269 B
Text
20 lines
269 B
Text
@@
|
|
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
|