| 2215 | } |
| 2216 | |
| 2217 | void dm_api_free_reply(diameter_reply *rpl) |
| 2218 | { |
| 2219 | if (!rpl) |
| 2220 | return; |
| 2221 | cJSON_InitHooks(&shm_mem_hooks); |
| 2222 | cJSON_Delete(rpl->json); |
| 2223 | cJSON_InitHooks(NULL); |
| 2224 | } |
| 2225 | |
| 2226 | |
| 2227 | /* recursively free all AVPs, including grouped ones */ |
nothing calls this directly
no test coverage detected