]> git.ipfire.org Git - thirdparty/git.git/commit - ref-filter.c
ref-filter: use QSORT_S in ref_array_sort()
authorRené Scharfe <l.s.r@web.de>
Sun, 22 Jan 2017 17:58:07 +0000 (18:58 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 23 Jan 2017 19:02:40 +0000 (11:02 -0800)
commit83fc4d64fec779d73b18494461613ef911236daf
tree74185498a5c854e0c034059b2efd060e8c2715a9
parent5ebd9472a490b12ff941b8085b1b0932a755ffcc
ref-filter: use QSORT_S in ref_array_sort()

Pass the array of sort keys to compare_refs() via the context parameter
of qsort_s() instead of using a global variable; that's cleaner and
simpler.  If ref_array_sort() is to be called from multiple parallel
threads then care still needs to be taken that the global variable
used_atom is not modified concurrently.

Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
ref-filter.c