Skip to content

Commit 8903c77

Browse files
committed
Merge remote-tracking branch 'deepskystacker/master'
2 parents da8d981 + ec2f9c2 commit 8903c77

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

DeepSkyStackerKernel/BackgroundCalibration.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ class CBackgroundCalibration
1111
{
1212
public:
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;

DeepSkyStackerKernel/StackWalker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)