2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 01:59:26 +00:00

Add spatch to replace isc_mem_put+isc_mem_detach with isc_mem_putanddetach

This commit is contained in:
Ondřej Surý 2019-07-23 17:28:02 -04:00
parent b23c8aa5e8
commit d502569902

View File

@ -0,0 +1,8 @@
@@
expression M;
expression E1, E2;
@@
- isc_mem_put(M, E1, E2);
- isc_mem_detach(&M);
+ isc_mem_putanddetach(&M, E1, E2);