Re: [RFC PATCH v2 2/4] ref-filter API user: add and use a ref_sorting_release() From: Junio C Hamano <hidden> Date: 2021-10-20 14:39:09 Ævar Arnfjörð Bjarmason [off-list ref] writes: +void ref_sorting_release(struct ref_sorting *sorting) +{ + struct ref_sorting *next = sorting->next; + if (next) + ref_sorting_release(next); + free(sorting); +} Looks like a deep recursion that can be turned into an iteration fairly easily? I guess it does not matter as long as we won't deal with thousands of sort keys...
Keyboard shortcuts hback out one level jnext message in thread kprevious message in thread ldrill in Escclose help / fold thread tree ?toggle this help