Unfix the fix for an off-by-zero.
authorTaylor R Campbell <campbell@mumble.net>
Wed, 7 Nov 2018 02:39:25 +0000 (02:39 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Wed, 7 Nov 2018 02:39:25 +0000 (02:39 +0000)
commitbce218b33964481e02438ebf4471f648a2347b59
tree6a7c7a1f93e1cb3b0e6924a7d58ac312394a951f
parent30d140e2f3206332ec0879d908737da3ab8aa0b6
Unfix the fix for an off-by-zero.

arg_ulong_index_integer(argno, n) takes n as _exclusive_ upper bound.

In this case, n - 64 is a valid starting index.  So the exclusive
upper bound is n - 64 + 1 = n - 63.
src/microcode/prchacha.c