From 9a5f73d7874f463baeeec887ea7ea72c1d1c24a2 Mon Sep 17 00:00:00 2001 From: Joseph Eng <91924258+KangarooKoala@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:46:20 -0700 Subject: [PATCH] [cscore] Add back VideoProperty handle member initializer (#7283) --- cscore/src/main/native/include/cscore_oo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cscore/src/main/native/include/cscore_oo.h b/cscore/src/main/native/include/cscore_oo.h index 2c6d64171a..5b65304225 100644 --- a/cscore/src/main/native/include/cscore_oo.h +++ b/cscore/src/main/native/include/cscore_oo.h @@ -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;