Remove and free the flow */
| 364 | |
| 365 | /* Remove and free the flow */ |
| 366 | static void del_flow_from_arr(struct flow ***flows, size_t i) |
| 367 | { |
| 368 | tal_free((*flows)[i]); |
| 369 | tal_arr_remove(flows, i); |
| 370 | } |
| 371 | |
| 372 | /* It reduces the amount of the flows and/or removes some flows in order to |
| 373 | * deliver no more than max_deliver. It will leave at least one flow. |
no test coverage detected