mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-24 02:10:30 -05: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.
21 lines
167 B
Text
21 lines
167 B
Text
@@
|
|
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;
|