Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use memset_s to clear auth password.
There is a possibility that memset is optimised away, which would be problematic when clearing the password. Thus we replace memset with memset_s which has a far stricter language preventing this optimisation.
- Loading branch information