atoi: Possible buffer overflow #2
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Assure this can't happen by checking max length:
If length calculated in
.getLenLoop
exceeds that, return 0Hmmm, bad idea (turned out after implementation+tests).
during the first test I made a typo:
18.446.744.073.709.551.615
=>1844674407[4]709551615
Realized while typing that that the code would still assume it to be valid while it is not.
So somehow gotta do during calculations instead.
Partially fixed;
d15ed616e9
Guarded against unsigned overflows, todo now is checking if below min signed or above max signed