Skip to content

Commit 5228ed3

Browse files
committed
fix: assign 0 instead of nullptr in windows secret manager
1 parent 6f2645e commit 5228ed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lobby/credentials/secret.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ secret::SecretStorage::~SecretStorage() {
231231
secret::SecretStorage::SecretStorage(SecretStorage&& other) noexcept
232232
: m_type{ other.m_type },
233233
m_phProvider{ other.m_phProvider } {
234-
other.m_phProvider = nullptr;
234+
other.m_phProvider = 0;
235235
}
236236

237237

0 commit comments

Comments
 (0)