2cf5a7c98e
A simple execution of tmp/invoke-rename.pl
20 lines
269 B
Text
20 lines
269 B
Text
@@
|
|
expression x, y;
|
|
statement S;
|
|
@@
|
|
x = mbedtls_malloc(...);
|
|
y = mbedtls_malloc(...);
|
|
...
|
|
* if (x == NULL || y == NULL)
|
|
S
|
|
|
|
@@
|
|
expression x, y;
|
|
statement S;
|
|
@@
|
|
if (
|
|
* (x = mbedtls_malloc(...)) == NULL
|
|
||
|
|
* (y = mbedtls_malloc(...)) == NULL
|
|
)
|
|
S
|