git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mergesort: avoid left shift overflow
@ 2021-11-15 23:19 René Scharfe
  2021-11-16 14:08 ` Johannes Schindelin
  2021-11-18 23:27 ` Philip Oakley
  0 siblings, 2 replies; 10+ messages in thread
From: René Scharfe @ 2021-11-15 23:19 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano

Use size_t to match n when building the bitmask for checking whether a
rank is occupied, instead of the default signed int.

Signed-off-by: René Scharfe <l.s.r@web.de>
---
Ugh, sorry. :(

 mergesort.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mergesort.c b/mergesort.c
index 6216835566..bd9c6ef8ee 100644
--- a/mergesort.c
+++ b/mergesort.c
@@ -63,7 +63,7 @@ void *llist_mergesort(void *list,
 		void *next = get_next_fn(list);
 		if (next)
 			set_next_fn(list, NULL);
-		for (i = 0; n & (1 << i); i++)
+		for (i = 0; n & ((size_t)1 << i); i++)
 			list = llist_merge(ranks[i], list, get_next_fn,
 					   set_next_fn, compare_fn);
 		n++;
--
2.33.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-11-19 21:16 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-15 23:19 [PATCH] mergesort: avoid left shift overflow René Scharfe
2021-11-16 14:08 ` Johannes Schindelin
2021-11-17  9:19   ` Junio C Hamano
2021-11-17 23:31     ` Johannes Schindelin
2021-11-18 23:27 ` Philip Oakley
2021-11-19 16:51   ` Johannes Schindelin
2021-11-19 17:15     ` René Scharfe
2021-11-19 17:27     ` Philip Oakley
2021-11-19 19:28       ` Junio C Hamano
2021-11-19 21:16         ` Philip Oakley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).