* clone the given request * @param req * @return */
| 103 | * @return |
| 104 | */ |
| 105 | static inline request_t *clone_request(const request_t *req) { |
| 106 | request_t *req_new = my_malloc(request_t); |
| 107 | copy_request(req_new, req); |
| 108 | return req_new; |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * free the memory used by req |
nothing calls this directly
no test coverage detected