1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
@@
expression E1, E2, E3;
statement S;
expression V;
@@
- V = dns_name_dup(E1, E2, E3);
+ dns_name_dup(E1, E2, E3);
- if (V != ISC_R_SUCCESS) S
@@
expression E1, E2, E3;
statement S1, S2;
expression V;
@@
- V = dns_name_dup(E1, E2, E3);
- if (V != ISC_R_SUCCESS) S1 else { S2 }
+ dns_name_dup(E1, E2, E3);
+ S2
@@
expression E1, E2, E3;
expression V;
@@
- V = dns_name_dup(E1, E2, E3);
- RUNTIME_CHECK(V == ISC_R_SUCCESS);
+ dns_name_dup(E1, E2, E3);
@@
expression E1, E2, E3;
statement S1, S2;
expression V;
@@
- V = dns_name_dup(E1, E2, E3);
+ dns_name_dup(E1, E2, E3);
S1
- if (V != ISC_R_SUCCESS) S2
|