Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extkeys: Correct memset zeroing in extkeys_initialize_keyset()
sizeof(100) will evaluate to 4, so this wasn't zeroing out the whole array (which is likely what was intended here). Instead, we can use a braced initializer to perform the desirable behavior here.
- Loading branch information