Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
base64_decode: remove redundant check
If length == 0 || *current != '=' is false, the for loop will always end up in this same point, until the if statement becomes true. Thus, the if statement is not needed.
- Loading branch information