File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed
Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,16 @@ class CBackgroundCalibration
1111{
1212public:
1313 bool m_bInitOk;
14- double m_fTgtRedBk,
15- m_fTgtGreenBk,
16- m_fTgtBlueBk;
17- double m_fSrcRedBk,
18- m_fSrcGreenBk,
19- m_fSrcBlueBk;
20-
21- double m_fSrcRedMax,
22- m_fSrcGreenMax,
23- m_fSrcBlueMax;
14+ double m_fTgtRedBk{ 0.0 } ,
15+ m_fTgtGreenBk{ 0.0 } ,
16+ m_fTgtBlueBk{ 0.0 } ;
17+ double m_fSrcRedBk{ 0.0 } ,
18+ m_fSrcGreenBk{ 0.0 } ,
19+ m_fSrcBlueBk{ 0.0 } ;
20+
21+ double m_fSrcRedMax{ 0.0 } ,
22+ m_fSrcGreenMax{ 0.0 } ,
23+ m_fSrcBlueMax{ 0.0 } ;
2424
2525 BACKGROUNDCALIBRATIONMODE m_BackgroundCalibrationMode;
2626 BACKGROUNDCALIBRATIONINTERPOLATION m_BackgroundInterpolation;
Original file line number Diff line number Diff line change @@ -737,7 +737,7 @@ class StackWalkerInternal
737737 if ((this ->m_parent ->m_options & StackWalker::RetrieveFileVersion) != 0 )
738738 {
739739 VS_FIXEDFILEINFO* fInfo = NULL ;
740- DWORD dwHandle;
740+ DWORD dwHandle{ 0 } ;
741741 DWORD dwSize = GetFileVersionInfoSizeA (szImg, &dwHandle);
742742 if (dwSize > 0 )
743743 {
You can’t perform that action at this time.
0 commit comments