From: Rich Felker Date: Fri, 13 Apr 2012 07:26:59 +0000 (-0400) Subject: fix spurious overflows in strtoull with small bases X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=54222d1efc5239d3fc8c528672bd52bfd8dad813;hp=54222d1efc5239d3fc8c528672bd52bfd8dad813 fix spurious overflows in strtoull with small bases whenever the base was small enough that more than one digit could still fit after UINTMAX_MAX/36-1 was reached, only the first would be allowed; subsequent digits would trigger spurious overflow, making it impossible to read the largest values in low bases. ---