Skip to content

Commit

Permalink
fix: assign 0 instead of nullptr in windows secret manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Totto16 committed Oct 29, 2024
1 parent 0a98d2e commit eb7fa0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lobby/credentials/secret.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ secret::SecretStorage::~SecretStorage() {
secret::SecretStorage::SecretStorage(SecretStorage&& other) noexcept
: m_type{ other.m_type },
m_phProvider{ other.m_phProvider } {
other.m_phProvider = nullptr;
other.m_phProvider = 0;
}


Expand Down

0 comments on commit eb7fa0e

Please sign in to comment.