зеркало из https://github.com/microsoft/git.git
Merge branch 'jk/bisect-prn-unsigned'
* jk/bisect-prn-unsigned: bisect: avoid signed integer overflow
This commit is contained in:
Коммит
252905dd4a
4
bisect.c
4
bisect.c
|
@ -525,9 +525,9 @@ struct commit_list *filter_skipped(struct commit_list *list,
|
||||||
* is increased by one between each call, but that should not matter
|
* is increased by one between each call, but that should not matter
|
||||||
* for this application.
|
* for this application.
|
||||||
*/
|
*/
|
||||||
static int get_prn(int count) {
|
static unsigned get_prn(unsigned count) {
|
||||||
count = count * 1103515245 + 12345;
|
count = count * 1103515245 + 12345;
|
||||||
return ((unsigned)(count/65536) % PRN_MODULO);
|
return (count/65536) % PRN_MODULO;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Загрузка…
Ссылка в новой задаче