]> git.ipfire.org Git - thirdparty/git.git/commit - commit-reach.c
commit-reach: fix cast in compare_commits_by_gen()
authorRené Scharfe <l.s.r@web.de>
Mon, 1 Oct 2018 19:16:01 +0000 (21:16 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 22 Oct 2018 22:57:47 +0000 (07:57 +0900)
commit8628ace2691510dc856e2a9c735706fa8f0620e1
treec181c4c78406040d5fb424175d6473bcc2c095f2
parent4067a64672f9db8ca38d5a2682a7cdba7938c18b
commit-reach: fix cast in compare_commits_by_gen()

The elements of the array to be sorted are commit pointers, so the
comparison function gets handed references to these pointers, not
pointers to commit objects.  Cast to the right type and dereference
once to correctly get the commit reference.

Found using Clang's ASan and t5500.

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