[pacman-dev] [PATCH] pacsort: fix warning about signed overflow potential during comparison.
23 Apr
2015
23 Apr
'15
6:50 a.m.
From: Andrew Gregory <andrew.gregory.8@gmail.com> Some crazy person assumed we would have fewer than INT_MAX columns. Signed-off-by: Allan McRae <allan@archlinux.org> --- src/util/pacsort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/pacsort.c b/src/util/pacsort.c index 9d248fa..b0137ec 100644 --- a/src/util/pacsort.c +++ b/src/util/pacsort.c @@ -308,7 +308,7 @@ static const char *nth_column(const char *string) int col; ptr = prev = string; - for(col = 1; ptr && col <= opts.sortkey; col++) { + for(col = 0; ptr && col < opts.sortkey; col++) { prev = ptr; ptr = strchr(ptr, opts.delim); if(ptr) { -- 2.3.5
3515
Age (days ago)
3515
Last active (days ago)
0 comments
1 participants
participants (1)
-
Allan McRae