[cscore] Add back VideoProperty handle member initializer (#7283)

This commit is contained in:
Joseph Eng
2024-10-23 21:46:20 -07:00
committed by GitHub
parent db552317e7
commit 9a5f73d787

View File

@@ -229,7 +229,7 @@ class VideoProperty {
CS_Status GetLastStatus() const { return m_status; }
private:
explicit VideoProperty(CS_Property handle) {
explicit VideoProperty(CS_Property handle) : m_handle(handle) {
m_status = 0;
if (handle == 0) {
m_kind = kNone;