| 2038 | } |
| 2039 | |
| 2040 | void _dm_release_message_response(struct dm_cond *cond, char *rpl_avps) |
| 2041 | { |
| 2042 | cJSON_PurgeString(rpl_avps); |
| 2043 | if (cond->rpl.json) { |
| 2044 | cJSON_InitHooks(&shm_mem_hooks); |
| 2045 | cJSON_Delete(cond->rpl.json); |
| 2046 | cJSON_InitHooks(NULL); |
| 2047 | cond->rpl.json = NULL; |
| 2048 | } |
| 2049 | } |
| 2050 | |
| 2051 | static int _dm_get_message_reply(struct dm_cond *cond, diameter_reply *rpl) |
| 2052 | { |
no test coverage detected