| 693 | } |
| 694 | |
| 695 | void cbm_http_req_free(cbm_http_req_t *req) { |
| 696 | if (req && req->body) { |
| 697 | free(req->body); |
| 698 | req->body = NULL; |
| 699 | req->body_len = 0; |
| 700 | } |
| 701 | } |
| 702 | |
| 703 | /* ── Responses ────────────────────────────────────────────────── */ |
| 704 |
no outgoing calls
no test coverage detected