mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 10:10:06 +00:00
96 lines
1.2 KiB
Plaintext
96 lines
1.2 KiB
Plaintext
|
@@
|
||
|
statement S;
|
||
|
expression E;
|
||
|
@@
|
||
|
|
||
|
- if (isc_mem_create(0, 0, E) != ISC_R_SUCCESS) S;
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
statement S;
|
||
|
expression V, E;
|
||
|
@@
|
||
|
|
||
|
- V = isc_mem_create(0, 0, E);
|
||
|
- if (V == ISC_R_SUCCESS) S
|
||
|
+ isc_mem_create(E);
|
||
|
+ S
|
||
|
|
||
|
|
||
|
@@
|
||
|
statement S;
|
||
|
expression V, E;
|
||
|
@@
|
||
|
|
||
|
- V = isc_mem_create(0, 0, E);
|
||
|
- if (V != ISC_R_SUCCESS) S
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
expression V, E;
|
||
|
@@
|
||
|
|
||
|
- V = isc_mem_create(0, 0, E);
|
||
|
- check_result(V, ...);
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
statement S;
|
||
|
expression V, E, C;
|
||
|
@@
|
||
|
|
||
|
- if (C) { V = isc_mem_create(0, 0, E); }
|
||
|
- if (V != ISC_R_SUCCESS) S
|
||
|
+ if (C) { isc_mem_create(E); }
|
||
|
|
||
|
@@
|
||
|
expression E;
|
||
|
@@
|
||
|
|
||
|
- RUNTIME_CHECK(isc_mem_create(0, 0, E) == ISC_R_SUCCESS);
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
expression E;
|
||
|
@@
|
||
|
|
||
|
- RUNCHECK(isc_mem_create(0, 0, E));
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
expression E;
|
||
|
@@
|
||
|
|
||
|
- CHECK(isc_mem_create(0, 0, E), ...);
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
expression E;
|
||
|
@@
|
||
|
|
||
|
- CHECK(isc_mem_create(0, 0, E));
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
expression V, E;
|
||
|
@@
|
||
|
|
||
|
- V = isc_mem_create(0, 0, E);
|
||
|
- assert_int_equal(V, ISC_R_SUCCESS);
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
expression E;
|
||
|
statement S;
|
||
|
@@
|
||
|
|
||
|
- if (isc_mem_create(0, 0, E) != ISC_R_SUCCESS) S
|
||
|
+ isc_mem_create(E);
|
||
|
|
||
|
@@
|
||
|
expression E;
|
||
|
@@
|
||
|
|
||
|
- DO(..., isc_mem_create(0, 0, E));
|
||
|
+ isc_mem_create(E);
|