Skip to content

Commit

Permalink
DSUtil: исправлено использование итератора.
Browse files Browse the repository at this point in the history
  • Loading branch information
v0lt committed Aug 9, 2024
1 parent d7215dd commit df8100e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DSUtil/DSMPropertyBag.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ HRESULT IDSMPropertyBagImpl::GetProperty(LPCWSTR key, BSTR* value)

std::lock_guard lock(m_mutex);

auto& it = m_properties.find(key);
auto it = m_properties.find(key);
if (it == m_properties.end()) {
return E_FAIL;
}
Expand Down

0 comments on commit df8100e

Please sign in to comment.