mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-27 20:11:12 -05:00
95 lines
1.2 KiB
Text
95 lines
1.2 KiB
Text
@@
|
|
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);
|