mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 10:10:06 +00:00
Also disable the semantic patch as the code needs tweaks here and there because some destroy functions might not destroy the object and return early if the object is still in use.
22 lines
167 B
Plaintext
22 lines
167 B
Plaintext
@@
|
|
type T;
|
|
T **PP;
|
|
T *P;
|
|
@@
|
|
|
|
P = *PP;
|
|
+ *PP = NULL;
|
|
...
|
|
- *PP = NULL;
|
|
|
|
@@
|
|
type T;
|
|
identifier PP;
|
|
identifier P;
|
|
@@
|
|
|
|
T *P = *PP;
|
|
+ *PP = NULL;
|
|
...
|
|
- *PP = NULL;
|