| 476 | } |
| 477 | |
| 478 | void cbm_http_req_free(cbm_http_req_t *req) { |
| 479 | if (req && req->body) { |
| 480 | free(req->body); |
| 481 | req->body = NULL; |
| 482 | req->body_len = 0; |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | /* ── Responses ────────────────────────────────────────────────── */ |
| 487 |
no outgoing calls
no test coverage detected