The tasklet responsible of handling the remaining QUIC connection object
and its traffic was not released, leading to a memory leak. Furthermore its
callback, quic_cc_conn_io_cb(), should return NULL after this tasklet is
released.
task_destroy(cc_qc->idle_timer_task);
cc_qc->idle_timer_task = NULL;
+ tasklet_free(qc->wait_event.tasklet);
free_quic_conn_cids(qc);
pool_free(pool_head_quic_cids, cc_qc->cids);
cc_qc->cids = NULL;
quic_release_cc_conn(cc_qc);
cc_qc = NULL;
qc = NULL;
+ t = NULL;
goto leave;
}